Query: dbix::searchbuilder::record::cachable
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
DBIx::SearchBuilder::Record::Cachable(3pm) User Contributed Perl Documentation DBIx::SearchBuilder::Record::Cachable(3pm)NAMEDBIx::SearchBuilder::Record::Cachable - Records with caching behaviorSYNOPSISpackage MyRecord; use base qw/DBIx::SearchBuilder::Record::Cachable/;DESCRIPTIONThis module subclasses the main DBIx::SearchBuilder::Record package to add a caching layer. The public interface remains the same, except that records which have been loaded in the last few seconds may be reused by subsequent fetch or load methods without retrieving them from the database.METHODSFlushCache This class method flushes the _global_ DBIx::SearchBuilder::Record::Cachable cache. All caches are immediately expired. _FlushKeyCache Blow away this record type's key cache _CacheConfig You can override this method to change the duration of the caching from the default of 5 seconds. For example, to cache records for up to 30 seconds, add the following method to your class: sub _CacheConfig { { 'cache_for_sec' => 30 } }AUTHORMatt Knopp <mhat@netlag.com>SEE ALSODBIx::SearchBuilder, DBIx::SearchBuilder::Record perl v5.14.2 2011-07-28 DBIx::SearchBuilder::Record::Cachable(3pm)