Plack::Middleware::Cache - Use Cached Responses of Certain URIs
Contents
Copyright And License
Copyright 2011-2014. Ingy döt Net.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
See <http://www.perl.com/perl/misc/Artistic.html>
perl v5.36.0 2022-12-11 Plack::Middleware::Cache(3pm)
Description
This middleware allows you to cache expensive and non-changing responses from URIs that match a list of
regular expression patterns.
Name
Plack::Middleware::Cache - Use Cached Responses of Certain URIs
Parameters
The following parameters can be used:
match_url (required)
A regexp string or array ref of regexp strings to try to match the current URL against.
cache_dir (optional)
A directory to write the cached responses.
debug (optional)
Set to 1 to warn cache information.
Synopsis
builder {
enable "Cache",
match_url => [
'^/foo/',
'\\?.*xxx=.*',
],
cache_dir => '/tmp/plack-cache';
$app;
};
Thanks
Thanks to Strategic Data for supporting the writing and release of this module.
