├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── dist.ini ├── lib └── resty │ └── shdict │ ├── redis-commands.lua │ └── server.lua ├── patches ├── openresty-1.13.6.1-cross_module_shdict.patch ├── openresty-1.15.8.2-cross_module_shdict.patch ├── openresty-1.17.8.2-cross_module_shdict.patch └── openresty-1.19.3.1-cross_module_shdict.patch └── t ├── http.t ├── redis-commands.t ├── redis-inline.t └── redis-resp.t /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | *~ 4 | t/servroot/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/README.md -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/resty/shdict/redis-commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/lib/resty/shdict/redis-commands.lua -------------------------------------------------------------------------------- /lib/resty/shdict/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/lib/resty/shdict/server.lua -------------------------------------------------------------------------------- /patches/openresty-1.13.6.1-cross_module_shdict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/patches/openresty-1.13.6.1-cross_module_shdict.patch -------------------------------------------------------------------------------- /patches/openresty-1.15.8.2-cross_module_shdict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/patches/openresty-1.15.8.2-cross_module_shdict.patch -------------------------------------------------------------------------------- /patches/openresty-1.17.8.2-cross_module_shdict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/patches/openresty-1.17.8.2-cross_module_shdict.patch -------------------------------------------------------------------------------- /patches/openresty-1.19.3.1-cross_module_shdict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/patches/openresty-1.19.3.1-cross_module_shdict.patch -------------------------------------------------------------------------------- /t/http.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/t/http.t -------------------------------------------------------------------------------- /t/redis-commands.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/t/redis-commands.t -------------------------------------------------------------------------------- /t/redis-inline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/t/redis-inline.t -------------------------------------------------------------------------------- /t/redis-resp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fffonion/lua-resty-shdict-server/HEAD/t/redis-resp.t --------------------------------------------------------------------------------