nhulsch/slim-redis-rlimit

This package is abandoned and no longer maintained. No replacement package was suggested.

Slim Middleware for having Rate Limits with Redis

dev-master 2016-08-17 13:09 UTC

This package is not auto-updated.

Last update: 2021-06-26 01:32:25 UTC


README

PSR-7 Ratelimiter

Usage

$app = new Slim\App();

$app->add(new \Slim\Middleware\RedisRatelimit('tcp://127.0.0.1:6379', 500, 300));

This will be called on every requests and checks if the number of requests (in this case 500) exceeds within 300 seconds.

Class will also check if the Cloudflare UserIP header is set and will use that for tracking.