├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── jchash.c ├── jchash.h ├── lib └── resty │ └── chash │ ├── jchash.lua │ └── server.lua └── t ├── hash.t └── server.t /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | test 4 | t/servroot 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/README.md -------------------------------------------------------------------------------- /jchash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/jchash.c -------------------------------------------------------------------------------- /jchash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/jchash.h -------------------------------------------------------------------------------- /lib/resty/chash/jchash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/lib/resty/chash/jchash.lua -------------------------------------------------------------------------------- /lib/resty/chash/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/lib/resty/chash/server.lua -------------------------------------------------------------------------------- /t/hash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/t/hash.t -------------------------------------------------------------------------------- /t/server.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruoshan/lua-resty-jump-consistent-hash/HEAD/t/server.t --------------------------------------------------------------------------------