NAME

CGI::Session::Driver::memcached - CGI::Session driver for memcached

SYNOPSIS

$memcached = Cache::Memcached->new({
    servers => [ 'localhost:11211' ],
    debug   => 0,
    compress_threshold => 10_000,
});
$s = new CGI::Session( "driver:memcached", $sid, { Memcached => $memcached } );

DESCRIPTION

memcached stores session data into memcached.

DRIVER ARGUMENTS

The only supported driver argument is 'Memcached'. It's an instance of Cache::Memcached.

REQUIREMENTS

CGI::Session
Cache::Memcached

TODO

Implement traverse method!

But I don't know how to get all objects store in memcached.

AUTHOR

Kazuhiro Oinuma <oinume@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2005 - 2006 Kazuhiro Oinuma <oinume@cpan.org>. All rights reserved. This library is free software. You can modify and or distribute it under the same terms as Perl itself.