diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-04-01 17:24:06 +0200 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-04-01 17:24:06 +0200 |
| commit | a4659c4df26f36f806ad24d7524c264a236d7bbb (patch) | |
| tree | 80ee64c1e5a74a6b4cdf4f1dbb3c30b71c2c4ee9 /lib/Plack/Middleware/Throttle/Interval.pm | |
| parent | update tests (diff) | |
| download | plack-middleware-throttle-a4659c4df26f36f806ad24d7524c264a236d7bbb.tar.gz | |
start POD
Diffstat (limited to '')
| -rw-r--r-- | lib/Plack/Middleware/Throttle/Interval.pm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/Plack/Middleware/Throttle/Interval.pm b/lib/Plack/Middleware/Throttle/Interval.pm index 3e61220..cd40fde 100644 --- a/lib/Plack/Middleware/Throttle/Interval.pm +++ b/lib/Plack/Middleware/Throttle/Interval.pm @@ -29,3 +29,45 @@ sub reset_time { } 1; +__END__ + +=head1 NAME + +Plack::Middleware::Throttle::Interval - A Plack Middleware for rate-limiting incoming HTTP requests. + +=head1 SYNOPSIS + + my $handler = builder { + enable "Throttle::Interval", + min => 2, + backend => Plack::Middleware::Throttle::Backend::Hash->new(); + sub { [ '200', [ 'Content-Type' => 'text/html' ], ['hello world'] ] }; + }; + +=head1 DESCRIPTION + +How many request an host can do between an interval of time (in seconds). + +=head1 OPTIONS + +=over 4 + +=item B<in> + +How many requets can be done in an interval of time. + +=back + +=head1 AUTHOR + +franck cuny E<lt>franck@lumberjaph.netE<gt> + +=head1 SEE ALSO + +=head1 LICENSE + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut + |
