|
NAMEPlack::Middleware::Throttle::Daily - A Plack Middleware for rate-limiting incoming HTTP requests. SYNOPSIS my $handler = builder {
enable "Throttle::Daily",
max => 2,
backend => Plack::Middleware::Throttle::Backend::Hash->new();
sub { [ '200', [ 'Content-Type' => 'text/html' ], ['hello world'] ] };
};
DESCRIPTIONHow many request an host can do in one day. OPTIONS
AUTHORfranck cuny <franck@lumberjaph.net> SEE ALSOLICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|