|
NAMECatalyst::Plugin::Cache::FastMmap - DEPRECATED FastMmap cacheSYNOPSISuse Catalyst qw[Cache::FastMmap]; MyApp->config( cache => { storage => '/tmp/cache', xpires => 3600, }, ); my $data; unless ( $data = $c->cache->get('data') ) { $data = MyApp::Model::Data->retrieve('data'); $c->cache->set( 'data', $data ); } $c->response->body($data); DESCRIPTIONThis package is part of the Catalyst Cache family. It allows integration of Cache::FastMmap and CatalystThis module extends the Catalyst application class with a "mmap" cache. This module is not recommended for production use, as Cache::FastMmap can segfault and/or unexpectedly throw away your data. METHODS
SEE ALSOCache::FastMmap, Catalyst.AUTHORChristian Hansen, "ch@ngmedia.com"Sebastian Riedel, "sri@oook.de" LICENSEThis library is free software . You can redistribute it and/or modify it under the same terms as perl itself.COPYRIGHTCopyright (c) 2005-2011, the above mentioned AUTHORs.
Visit the GSP FreeBSD Man Page Interface. |