NAME Apache2::WebApp::Plugin::Memcached - Cache::Memcached module wrapper SYNOPSIS my $obj = $c->plugin('Memcached')->method( ... ); # Apache2::WebApp::Plugin::Memcached->method() or $c->plugin('Memcached')->method( ... ); DESCRIPTION Store persistent data using memcached (memory cache daemon). PREREQUISITES This package is part of a larger distribution and was NOT intended to be used directly. In order for this plugin to work properly, the following packages must be installed: Apache2::WebApp Cache::Memcached Params::Validate INSTALLATION From source: $ tar xfz Apache2-WebApp-Plugin-Memcached-0.X.X.tar.gz $ perl MakeFile.PL PREFIX=~/path/to/custom/dir LIB=~/path/to/custom/lib $ make $ make test $ make install Perl one liner using CPAN.pm: $ perl -MCPAN -e 'install Apache2::WebApp::Plugin::Memcached' Use of CPAN.pm in interactive mode: $> perl -MCPAN -e shell cpan> install Apache2::WebApp::Plugin:Memcached cpan> quit Just like the manual installation of Perl modules, the user may need root access during this process to insure write permission is allowed within the installation directory. CONFIGURATION Unless it already exists, add the following to your projects *webapp.conf* [memcached] servers = 127.0.0.1:11211, 192.168.1.1:11212, 192.168.1.2:11213 compress_threshold = 10_000 OBJECT METHODS connect Initialize a new Memcache session across servers. my $memd = $c->plugin('Memcached')->connect({ memcached_servers => '127.0.0.1:11211, 192.168.1.1:11212, 192.168.1.2:11213', memcached_compress_threshold => 10_000, debug => 1, }); $memd->set( "foo", "bar" ); SEE ALSO Apache2::WebApp, Apache2::WebApp::Plugin, Cache::Memcached AUTHOR Marc S. Brooks, - COPYRIGHT This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See