Apache::Session::Memcached is a Perl module that stores persistent data using memcached (memory cache daemon) for Apache::Session storage.
SYNOPSIS
use Apache::Session::Memcached;
tie %session, 'Apache::Session::Memcached', $sid, {
Servers => '10.0.0.1:20000 10.0.0.2:20000',
NoRehash => 1,
Readonly => 0,
Debug => 1,
CompressThreshold => 10_000
};
Apache::Session::Memcached is a bridge between Apache::Session and memcached, a distributed memory cache daemon.
More informations about memcached are available at http://www.danga.com/memcached.
This module provides a way to use Cache::Memcached (memcached Perl API) as Apache::Session storage implementation.
Product's homepage
Requirements:
· Perl