X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcluster.pl;h=b6c38166b6dba898a1a513f730b015b4850f9673;hb=5756741d9682667ae5b0442c4e6f609bd481b6eb;hp=900d57a8b125a105765eda9bb096759da09a915e;hpb=44fbbf60906264270ce1621ab15569162934a020;p=spider.git diff --git a/perl/cluster.pl b/perl/cluster.pl index 900d57a8..b6c38166 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -225,6 +225,8 @@ our $localhost_alias_ipv6; # for things (PC92, PC61 etc) that expose IP address # be set by Msg.pm stuff if they are left undefined but, if you need # certanty then set/var them in the startup file. +our $save_route_cache; # save and restore route cache on restart. Probably only useful for G1TLH testing + use vars qw($version $subversion $build $gitversion $gitbranch); # send a message to call on conn and disconnect @@ -471,7 +473,7 @@ sub cease DXDb::closeall; # Write route cache - Route::write_cache(); + Route::write_cache() if $save_route_cache; # close all listeners foreach my $l (@listeners) { @@ -655,7 +657,7 @@ sub setup_start } # read any route cache there might be - Route::read_cache(); + Route::read_cache() if $save_route_cache; # start listening for incoming messages/connects dbg("starting listeners ..."); @@ -870,7 +872,7 @@ sub per_minute sub per_10_minute { RBN::per_10_minute(); - Route::write_cache(); + Route::write_cache() if $save_route_cache; } sub per_hour