Skip to content

aitboudad/Throttle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

README

What is it?

A basic throttling implementation

Installation

Use Composer (recommended)

The recommended way to install msDateTime is through composer.

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:

curl -s http://getcomposer.org/installer | php

Just create a composer.json file for your project:

{
    "require": {
        "michaelesmith/throttle": "*"
    }
}

For more info on composer see https://github.com/composer/composer

Examples

###Basic

$throttle = new Throttle(new \Doctrine\Common\Cache\ApcCache(), new \MS\Throttle\Time());
$throttle->addInterval(60, 2); // adds an interval where 2 increments are allowed in 60 seconds
$throttle->addInterval(600, 5); // adds an interval where 5 increments are allowed in 10 minutes

// in each action you want to limit
try {
    $throttle->increment($request->getClientIp());
} catch(\MS\Throttle\RateException $e) {
    $e->getInterval(); // the interval that hit the rate limit
    printf('You can only make %d requests in %d seconds', $e->getInterval()->count, $e->getInterval()->seconds);
}

You can use any Doctrine\Common\Cache adapter but you need to use one that is persistent across requests for most cases.

###Garbage Collection

By using a request persistent cache adapter you will at some point need to purge outdated entries. There are 2 strategies for this:

// garbage collect only the current key on every increment
$throttle->increment($key = $request->getClientIp());
$throttle->garbageCollect($key);
// this can be expensive and will not purge old entries if the key is not used

// a better way use a cli command via crontab
$throttle->garbageCollect();
// not passing a key will cause it to collect all keys

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%