devhamidreza / ratelimitredis
There is no license information available for the latest version (dev-main) of this package.
simple rate limit use Redis
dev-main
2024-09-06 13:47 UTC
Requires
- predis/predis: ^2.2
This package is auto-updated.
Last update: 2025-04-06 15:06:02 UTC
README
simple RateLimit Class use Redis
<?php use RateLimit\RateLimit; use RateLimit\SpamDetector; require_once 'vendor/autoload.php'; $rateLimit = new RateLimit(); $spamDetector = new SpamDetector(); $isLimited = $rateLimit->isLimited('index'); if($isLimited){ die('You are blocked'); } $id = '12'; $isSpam = $spamDetector->isSpam($id); if ($isSpam) { die('Please do not spam' ); } echo "welcome";