├── .gitignore ├── .luacheckrc ├── .luacov ├── .travis.yml ├── Dockerfile ├── Dockerfile.test ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yml ├── img └── graph.png ├── nginx.conf ├── resty-redis-rate-1.0.0-0.rockspec ├── spec └── resty-redis-rate_spec.lua └── src └── resty-redis-rate.lua /.gitignore: -------------------------------------------------------------------------------- 1 | luacov.* 2 | -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- 1 | std="ngx_lua+busted" 2 | max_line_length=120 3 | 4 | -------------------------------------------------------------------------------- /.luacov: -------------------------------------------------------------------------------- 1 | return { 2 | ["include"] = { 'src/' } 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/Dockerfile.test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/img/graph.png -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/nginx.conf -------------------------------------------------------------------------------- /resty-redis-rate-1.0.0-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/resty-redis-rate-1.0.0-0.rockspec -------------------------------------------------------------------------------- /spec/resty-redis-rate_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/spec/resty-redis-rate_spec.lua -------------------------------------------------------------------------------- /src/resty-redis-rate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leandromoreira/nginx-lua-redis-rate-measuring/HEAD/src/resty-redis-rate.lua --------------------------------------------------------------------------------