| OpenFrame-WebApp documentation | Contained in the OpenFrame-WebApp distribution. |
OpenFrame::WebApp::Session::FileCache - sessions using Cache::FileCache
use OpenFrame::WebApp::Session::FileCache; # see OpenFrame::WebApp::Session
An OpenFrame::WebApp::Session using Cache::FileCache.
Inherits its interface from OpenFrame::WebApp::Session::CacheBase.
Steve Purkis <spurkis@epn.nu>
Copyright (c) 2003 Steve Purkis. All rights reserved. Released under the same license as Perl itself.
Cache::FileCache, OpenFrame::WebApp::Sesssion, OpenFrame::WebApp::Sesssion::CacheBase, OpenFrame::WebApp::Sesssion::MemCache
| OpenFrame-WebApp documentation | Contained in the OpenFrame-WebApp distribution. |
package OpenFrame::WebApp::Session::FileCache; use strict; use warnings::register; use Cache::FileCache; use base qw( OpenFrame::WebApp::Session::CacheBase ); use constant cache_class => "Cache::FileCache"; our $VERSION = (split(/ /, '$Revision: 1.4 $'))[1]; 1;