-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_redis.lua
76 lines (59 loc) · 1.47 KB
/
test_redis.lua
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env luajit
local cosocket = require('everlooping.tcppool')
local ioloop = require('everlooping.ioloop')
ngx = require('ngx')
local redis = require("resty.redis")
local cjson = require("cjson")
cosocket.register(function()
local red = redis:new()
red:set_timeout(1000) -- 1 sec
local ok, err = red:connect("localhost", 6379)
if not ok then
print("failed to connect: ", err)
return
end
ok, err = red:set("dog", "an aniaml")
if not ok then
print("failed to set dog: ", err)
return
end
print("set result: ", ok)
red:set_keepalive()
local red = redis:new()
red:set_timeout(1000) -- 1 sec
local ok, err = red:connect("localhost", 6379)
if not ok then
print("failed to connect: ", err)
return
end
local res, err = red:get("dog")
if not res then
print("failed to get dog: ", err)
end
print("get result: ", res)
if res == cjson.null then
print("dog not found.")
end
red:set_keepalive()
end)
cosocket.register(function()
cosocket.sleep(1)
local red = redis:new()
red:set_timeout(1000) -- 1 sec
local ok, err = red:connect("localhost", 6379)
if not ok then
print("failed to connect: ", err)
return
end
local res, err = red:get("dog")
if not res then
print("failed to get dog: ", err)
end
print("get result: ", res)
if res == cjson.null then
print("dog not found.")
end
red:set_keepalive()
print('reused: ' .. red:get_reused_times())
end)
ioloop.defaultIOLoop():start()