NAME
Apache::Session::Memorycached - An implementation of Apache::Session
SYNOPSIS
use Apache::Session::Memorycached;
tie %session, 'Apache::Session::Memorycached', $cookie, {
'servers' => ["10.75.1.19:11211"], #all write operations
'local' => ["localhost:11211"], #read-only operations
};
DESCRIPTION
This module is an implementation of Apache::Session. It uses the memcached system backing store . You may specify servers (principal) and locals caches for locking in arguments to the constructor. See the example, and the documentation for Apache::Session::Store::Memorycached
AUTHOR
This module was written by eric german <germanlinux@yahoo.fr>.
SEE ALSO
Apache::Session::DB_File, Apache::Session::Flex, Apache::Session::MySQL, Apache::Session::Postgres, Apache::Session