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
|
import("core.cache.memcache")
import("core.cache.localcache")
import("core.cache.globalcache")
function test_memcache(t)
memcache.set("mycache", "xyz", {1, 2, 3})
memcache.set2("mycache", "foo", "bar", "1")
t:are_equal(memcache.get("mycache", "xyz"), {1, 2, 3})
t:are_equal(memcache.get2("mycache", "foo", "bar"), "1")
memcache.clear("mycache")
t:are_equal(memcache.get2("mycache", "foo", "bar"), nil)
memcache.set2("mycache", "foo", "bar", "1")
memcache.clear()
t:are_equal(memcache.get("mycache", "xyz"), nil)
t:are_equal(memcache.get2("mycache", "foo", "bar"), nil)
end
function test_localcache(t)
localcache.set("mycache", "xyz", {1, 2, 3})
localcache.set2("mycache", "foo", "bar", "1")
t:are_equal(localcache.get("mycache", "xyz"), {1, 2, 3})
t:are_equal(localcache.get2("mycache", "foo", "bar"), "1")
localcache.clear("mycache")
t:are_equal(localcache.get2("mycache", "foo", "bar"), nil)
localcache.set2("mycache", "foo", "bar", "1")
localcache.clear()
t:are_equal(localcache.get("mycache", "xyz"), nil)
t:are_equal(localcache.get2("mycache", "foo", "bar"), nil)
end
function test_globalcache(t)
globalcache.set("mycache", "xyz", {1, 2, 3})
globalcache.set2("mycache", "foo", "bar", "1")
t:are_equal(globalcache.get("mycache", "xyz"), {1, 2, 3})
t:are_equal(globalcache.get2("mycache", "foo", "bar"), "1")
globalcache.clear("mycache")
t:are_equal(globalcache.get2("mycache", "foo", "bar"), nil)
globalcache.set2("mycache", "foo", "bar", "1")
globalcache.clear()
t:are_equal(globalcache.get("mycache", "xyz"), nil)
t:are_equal(globalcache.get2("mycache", "foo", "bar"), nil)
end
|