NAME
Nginx::FastCGI::Cache - Conveniently manage the nginx fastcgi cache
VERSION
version 0.002
SYNOPSIS
use Nginx::FastCGI::Cache;
# args are optional, these are the default values
my $nginx_cache
= Nginx::FastCGI::Cache->new({
fastcgi_cache_key => [qw/scheme request_method host request_uri/],
location => '/var/nginx/cache',
levels => [ 1, 2 ],
});
# delete all cached files
$nginx->purge_cache;
# delete the cached file for this url only
$nginx->purge_file('http://perltricks.com/');
purge_file
Deletes the nginx cached file for a particular URL - requires a URL as an argument.
purge_cache
Deletes all nginx cached files in the nginx cache directory.
AUTHOR
David Farrell <sillymoos@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by David Farrell.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.