OpenFrame::WebApp::Session::FileCache - sessions using Cache::FileCache


OpenFrame-WebApp documentation Contained in the OpenFrame-WebApp distribution.

Index


Code Index:

NAME

Top

OpenFrame::WebApp::Session::FileCache - sessions using Cache::FileCache

SYNOPSIS

Top

  use OpenFrame::WebApp::Session::FileCache;

  # see OpenFrame::WebApp::Session

DESCRIPTION

Top

An OpenFrame::WebApp::Session using Cache::FileCache.

Inherits its interface from OpenFrame::WebApp::Session::CacheBase.

AUTHOR

Top

Steve Purkis <spurkis@epn.nu>

COPYRIGHT

Top

SEE ALSO

Top

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;