NAME
Text::Template::Simple::Cache - Cache manager for Text::Template::Simple
SYNOPSIS
TODO
DESCRIPTION
This is a base class for Text::Template::Simple
.
METHODS
type
reset
Resets the in-memory cache and deletes all cache files, if you are using a disk cache.
dumper structure
Returns a string version of the dumped in-memory or disk-cache. Cache is dumped via Data::Dumper. Deparse
option is enabled for in-memory cache.
Early versions of Data::Dumper
don' t have a Deparse
method, so you may need to upgrade your Data::Dumper
or disable deparse-ing if you want to use this method.
dump_cache
accepts some arguments in name => value
format:
varname
Controls the name of the dumped structure.
no_deparse
If you set this to a true value, deparsing will be disabled
dumper ids
Returns a list including the names (ids) of the templates in the cache.
id
Gets/sets the cache id.
size
Returns the total cache (disk or memory) size in bytes. If you are using memory cache, you must have Devel::Size installed on your system or your code will die.
has data => TEMPLATE_DATA
has id => TEMPLATE_ID
This method can be called with data
or id
named parameter. If you use the two together, id
will be used:
if($template->cache->has(id => 'e369853df766fa44e1ed0ff613f563bd')) {
print "ok!";
}
or
if($template->cache->has(data => q~Foo is <%=$bar%>~)) {
print "ok!";
}
hit
new
populate
AUTHOR
Burak Gürsoy, <burak@cpan.org>
COPYRIGHT
Copyright 2008 Burak Gürsoy. All rights reserved.
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.