File cache class 2008.02.03 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News File cache class 2008.02.03 (Default branch)
# 1  
Old 02-04-2008
File cache class 2008.02.03 (Default branch)

File cache class is a PHP Class that can cache arbitrary data in files in order to reduce the time necessary to regenerate pages or other types of data that do not change every time they are requested. It features safe locking of cache files to avoid data corruption caused by simultaneous accesses during cache file updates, portable locking schemes, and the ability to set a cache expiry date or timeout period. Cache files can store user-defined headers besides the cached data, and also standard headers used in HTTP like content-length:, date:, expires:, etag:, etc. It has been tested under Linux, SunOS and Windows. License: Freely Distributable Changes:
This release fixes a bug that was preventing the reading of cache file headers longer than the default file buffering length limit.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DBIx::Class::Serialize::Storable(3)			User Contributed Perl Documentation		       DBIx::Class::Serialize::Storable(3)

NAME
DBIx::Class::Serialize::Storable - hooks for Storable nfreeze/thaw DEPRECATION NOTE
This component is now DEPRECATED. It has not been providing any useful functionality for quite a while, and in fact destroys prefetched results in its current implementation. Do not use! SYNOPSIS
# in a table class definition __PACKAGE__->load_components(qw/Serialize::Storable/); # meanwhile, in a nearby piece of code my $cd = $schema->resultset('CD')->find(12); # if the cache uses Storable, this will work automatically $cache->set($cd->ID, $cd); DESCRIPTION
This component adds hooks for Storable so that result objects can be serialized. It assumes that your result object class ("result_class") is the same as your table class, which is the normal situation. HOOKS
The following hooks are defined for Storable - see the documentation for "Hooks" in Storable for detailed information on these hooks. STORABLE_freeze The serializing hook, called on the object during serialization. It can be inherited, or defined in the class itself, like any other method. STORABLE_thaw The deserializing hook called on the object during deserialization. AUTHOR AND CONTRIBUTORS
See AUTHOR and CONTRIBUTORS in DBIx::Class LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.18.2 2013-12-16 DBIx::Class::Serialize::Storable(3)