lua-resty-libr3

This is a libr3 implementation library base on FFI for Lua-Openresty

$ luarocks install lua-resty-libr3

-- r3 router
local r3 = require("resty.r3").new();
local encode_json = require("cjson.safe").encode

function foo(params) -- foo handler
ngx.say("foo: ", encode_json(params))
end

-- routing
r3:get("/foo/{id}/{name}", foo)

-- don't forget!!!
r3:compile()

-- dispatch
local ok = r3:dispatch("/foo/a/b", ngx.req.get_method())
if not ok then
ngx.exit(404)
end

Versions

1.2-05 years ago674 downloads
1.1-05 years ago508 downloads
1.0-05 years ago602 downloads
0.9-05 years ago98 downloads
0.8-05 years ago(revision: 2)133 downloads
0.7-05 years ago174 downloads
0.6-05 years ago(revision: 2)757 downloads
0.5-05 years ago59 downloads
0.4-05 years ago55 downloads
0.3-05 years ago383 downloads
0.2-05 years ago115 downloads
0.1-05 years ago10 downloads

Dependency for

APIOAK, Apache APISIX, mygateway

Manifests