OpenFrame::WebApp::Session::MemCache - sessions using Cache::MemoryCache


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

Index


Code Index:

NAME

Top

OpenFrame::WebApp::Session::MemCache - sessions using Cache::MemoryCache

SYNOPSIS

Top

  use OpenFrame::WebApp::Session::MemCache;

  # see OpenFrame::WebApp::Session

DESCRIPTION

Top

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

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

AUTHOR

Top

Steve Purkis <spurkis@epn.nu>

COPYRIGHT

Top

SEE ALSO

Top

Cache::MemoryCache, OpenFrame::WebApp::Sesssion, OpenFrame::WebApp::Sesssion::CacheBase, OpenFrame::WebApp::Sesssion::FileCache


OpenFrame-WebApp documentation Contained in the OpenFrame-WebApp distribution.
package OpenFrame::WebApp::Session::MemCache;

use strict;
use warnings::register;

use Cache::MemoryCache;

use base qw( OpenFrame::WebApp::Session::CacheBase );

use constant cache_class => "Cache::MemoryCache";

our $VERSION = (split(/ /, '$Revision: 1.2 $'))[1];

1;