forked from mirror/ledisdb
add tx support for lua(openresty)
This commit is contained in:
parent
9b1c6c4223
commit
7285c50bfc
|
@ -137,7 +137,12 @@ local commands = {
|
||||||
--[[server]]
|
--[[server]]
|
||||||
"ping",
|
"ping",
|
||||||
"echo",
|
"echo",
|
||||||
"select"
|
"select",
|
||||||
|
|
||||||
|
-- [[transaction]]
|
||||||
|
"begin",
|
||||||
|
"commit",
|
||||||
|
"rollback"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,96 @@
|
||||||
|
local ledis = require "ledis"
|
||||||
|
local lds = ledis:new()
|
||||||
|
|
||||||
|
lds:set_timeout(1000)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- connect
|
||||||
|
local ok, err = lds:connect("127.0.0.1", "6380")
|
||||||
|
if not ok then
|
||||||
|
ngx.say("failed to connect:", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
lds:del("tx")
|
||||||
|
|
||||||
|
-- transaction
|
||||||
|
|
||||||
|
ok, err = lds:set("tx", "a")
|
||||||
|
if not ok then
|
||||||
|
ngx.say("failed to execute set in tx: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("SET should be OK <=>", ok)
|
||||||
|
|
||||||
|
res, err = lds:get("tx")
|
||||||
|
if not res then
|
||||||
|
ngx.say("failed to execute get in tx: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("GET should be a <=>", res)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ok, err = lds:begin()
|
||||||
|
if not ok then
|
||||||
|
ngx.say("failed to run begin: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("BEGIN should be OK <=>", ok)
|
||||||
|
|
||||||
|
ok, err = lds:set("tx", "b")
|
||||||
|
if not ok then
|
||||||
|
ngx.say("failed to execute set in tx: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("SET should be OK <=>", ok)
|
||||||
|
|
||||||
|
|
||||||
|
res, err = lds:get("tx")
|
||||||
|
if not res then
|
||||||
|
ngx.say("failed to execute get in tx: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("GET should be b <=>", res)
|
||||||
|
|
||||||
|
ok, err = lds:rollback()
|
||||||
|
if not ok then
|
||||||
|
ngx.say("failed to rollback", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
ngx.say("ROLLBACK should be OK <=>", ok)
|
||||||
|
|
||||||
|
res, err = lds:get("tx")
|
||||||
|
if not res then
|
||||||
|
ngx.say("failed to execute get in tx: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("GET should be a <=>", res)
|
||||||
|
|
||||||
|
|
||||||
|
lds:begin()
|
||||||
|
lds:set("tx", "c")
|
||||||
|
lds:commit()
|
||||||
|
res, err = lds:get("tx")
|
||||||
|
if not res then
|
||||||
|
ngx.say("failed to execute get in tx: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
ngx.say("GET should be c <=>", res)
|
||||||
|
|
||||||
|
|
||||||
|
local ok, err = lds:close()
|
||||||
|
if not ok then
|
||||||
|
ngx.say("failed to close: ", err)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
ngx.say("close success")
|
Loading…
Reference in New Issue