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.9 by root, Wed Jan 3 12:33:33 2007 UTC vs.
Revision 1.12 by root, Thu Jan 4 17:22:06 2007 UTC

2 2
3# this extension swaps out maps and resets them, in essence managing 3# this extension swaps out maps and resets them, in essence managing
4# the reset/swap policy of the server. 4# the reset/swap policy of the server.
5 5
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 = 50; # 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 = 30; # save maps every n seconds 9our $SAVE_TIMEOUT = 20; # save maps every n seconds
10our $SAVE_INTERVAL = 0.3; # 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
48 } 68 }
49}; 69};
50 70
51$SCHEDULER->prio (-2); 71$SCHEDULER->prio (-2);
52 72
73# map load prefetch
74cf::map->attach (
75 on_enter => sub {
76 my ($map, $pl) = @_;
77
78 # floodfill surrounging maps, asynchronously
79 },
80);
81

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines