Plack::Middleware::Throttle::Interval - A Plack Middleware for rate-limiting
incoming HTTP requests.
my $handler = builder {
enable "Throttle::Interval",
min => 2,
backend => Plack::Middleware::Throttle::Backend::Hash->new();
sub { [ '200', [ 'Content-Type' => 'text/html' ], ['hello world'] ] };
};
How many request an host can do between an interval of time (in seconds).
- min
- How many requets can be done in an interval of time.
franck cuny <franck@lumberjaph.net>
This library is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.