├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── benchmark ├── nginx │ ├── nginx.conf │ ├── nginx_apitools_router.conf │ └── nginx_lua_resty_r3.conf └── resty-cli │ ├── test_apitools_router.lua │ └── test_lua_resty_r3.lua ├── lib └── resty │ └── r3.lua ├── lua-resty-r3-dev-1.rockspec └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *-sv 3 | tmp 4 | r3 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/benchmark/nginx/nginx.conf -------------------------------------------------------------------------------- /benchmark/nginx/nginx_apitools_router.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/benchmark/nginx/nginx_apitools_router.conf -------------------------------------------------------------------------------- /benchmark/nginx/nginx_lua_resty_r3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/benchmark/nginx/nginx_lua_resty_r3.conf -------------------------------------------------------------------------------- /benchmark/resty-cli/test_apitools_router.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/benchmark/resty-cli/test_apitools_router.lua -------------------------------------------------------------------------------- /benchmark/resty-cli/test_lua_resty_r3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/benchmark/resty-cli/test_lua_resty_r3.lua -------------------------------------------------------------------------------- /lib/resty/r3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/lib/resty/r3.lua -------------------------------------------------------------------------------- /lua-resty-r3-dev-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/lua-resty-r3-dev-1.rockspec -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/lua-resty-r3/HEAD/nginx.conf --------------------------------------------------------------------------------