1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/www/server/bin/php
<?php
# test array_based process cache
it_cache::put('it_cache_t', 1);
ok(it_cache::get('it_cache_t') === 1);
it_cache::put('it_cache_t', false);
ok(it_cache::get('it_cache_t') === false);
it_cache::put('it_cache_t', [2]);
ok(it_cache::get('it_cache_t') === [2]);
# test non-distributed apc cache
it_cache::put('it_cache_t', 1);
unset($GLOBALS['it_cache_local']);
ok(it_cache::get('it_cache_t') === 1);
it_cache::put('it_cache_t', false);
unset($GLOBALS['it_cache_local']);
ok(it_cache::get('it_cache_t') === false);
it_cache::put('it_cache_t', [2]);
unset($GLOBALS['it_cache_local']);
ok(it_cache::get('it_cache_t') === [2]);
ok(it_cache::get('it_cache_t'.rand(1, 1000)) === null);
# test distributed memcache
$GLOBALS['debug_aslive'] = 1;
it_cache::put('it_cache_d', 1, 'distributed' => 1);
unset($GLOBALS['it_cache_local']);
ok(it_cache::get('it_cache_d', 'distributed' => 1) == '1');
it_cache::put('it_cache_d', false, 'distributed' => 1);
unset($GLOBALS['it_cache_local']);
ok(it_cache::get('it_cache_d', 'distributed' => 1) === '');
it_cache::put('it_cache_d', [2], 'distributed' => 1);
unset($GLOBALS['it_cache_local']);
ok(it_cache::get('it_cache_d', 'distributed' => 1) === [2]);
ok(it_cache::get('it_cache_d'.rand(1, 1000), 'distributed' => 1) === null);
|