ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/map-scheduler.ext
(Generate patch)

Comparing deliantra/server/ext/map-scheduler.ext (file contents):
Revision 1.11 by root, Thu Jan 4 16:19:32 2007 UTC vs.
Revision 1.12 by root, Thu Jan 4 17:22:06 2007 UTC

6our $DEACTIVATE_TIMEOUT = 20; # number of seconds after which maps get deactivated to save cpu 6our $DEACTIVATE_TIMEOUT = 20; # number of seconds after which maps get deactivated to save cpu
7our $SWAP_TIMEOUT = 35; # number of seconds after which maps inactive get swapped out 7our $SWAP_TIMEOUT = 35; # number of seconds after which maps inactive get swapped out
8our $SCHEDULE_INTERVAL = 2; # time the map scheduler sleeps between runs 8our $SCHEDULE_INTERVAL = 2; # time the map scheduler sleeps between runs
9our $SAVE_TIMEOUT = 20; # save maps every n seconds 9our $SAVE_TIMEOUT = 20; # save maps every n seconds
10our $SAVE_INTERVAL = 0.1; # save at max. one map every $SAVE_INTERVAL 10our $SAVE_INTERVAL = 0.1; # save at max. one map every $SAVE_INTERVAL
11
12cf::coro {
13 $Coro::current->prio (Coro::PRIO_MIN);
14 # load the header of swapped-out.
15 # this is not a correctness issue, it simply saves diskspace
16 # because old files will get cleaned up on reset time
17 Coro::Timer::sleep 5;
18
19 my $files = Coro::AIO::aio_readdir cf::localdir . "/" . cf::tmpdir;
20
21 for my $map (@$files) {
22 utf8::decode $map;
23 next if $map =~ /\.(?:pst|meta)$/;
24 $map =~ s/∕/\//g;
25 cf::map::find $map;
26 Coro::Timer::sleep 0.5;
27 }
28
29 #TODO: should also preload random maps...
30};
11 31
12our $SCHEDULER = cf::coro { 32our $SCHEDULER = cf::coro {
13 while () { 33 while () {
14 Coro::Timer::sleep $SCHEDULE_INTERVAL; 34 Coro::Timer::sleep $SCHEDULE_INTERVAL;
15 35

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines