Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

chi::driver::memcached::libmemcached(3pm) [debian man page]

CHI::Driver::Memcached::libmemcached(3pm)		User Contributed Perl Documentation		 CHI::Driver::Memcached::libmemcached(3pm)

NAME
CHI::Driver::Memcached::libmemcached -- Distributed cache via Cache::Memcached::libmemcached VERSION
version 0.14 SYNOPSIS
use CHI; my $cache = CHI->new( driver => 'Memcached::libmemcached', namespace => 'products', servers => [ "10.0.0.15:11211", "10.0.0.15:11212", "/var/sock/memcached", "10.0.0.17:11211", [ "10.0.0.17:11211", 3 ] ], debug => 0, compress_threshold => 10_000, ); DESCRIPTION
A CHI driver that uses Cache::Memcached::libmemcached to store data in the specified memcached server(s). From the perspective of the CHI API, the feature set is nearly identical to CHI::Driver::Memcached. AUTHOR
Jonathan Swartz SEE ALSO
CHI, Cache::Memcached::libmemcached, CHI::Driver::Memcached, CHI::Driver::Memcached::Fast COPYRIGHT &; LICENSE Copyright (C) 2007 Jonathan Swartz. CHI::Driver::Memcached is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantibility and fitness for a particular purpose. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Swartz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2011-12-16 CHI::Driver::Memcached::libmemcached(3pm)

Check Out this Related Man Page

CGI::Session::Driver::memcached(3pm)			User Contributed Perl Documentation		      CGI::Session::Driver::memcached(3pm)

NAME
CGI::Session::Driver::memcached - CGI::Session driver for memcached SYNOPSIS
use strict; use warnings; use Cache::Memcached; # or Cache::Memcached::Fast my $memcached = Cache::Memcached->new({ servers => [ 'localhost:11211' ], debug => 0, compress_threshold => 10_000, }); my $session = CGI::Session->new( "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 or Cache::Memcached::Fast TODO
Implement traverse method! But I don't know how to get all objects store in memcached. AUTHOR
Kazuhiro Oinuma <oinume@cpan.org> REPOSITORY
git clone git://github.com/oinume/p5-cgi-session-driver-memcached COPYRIGHT AND LICENSE
Copyright (C) 2005 - 2009 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. perl v5.10.1 2009-09-11 CGI::Session::Driver::memcached(3pm)
Man Page

2 More Discussions You Might Find Interesting

1. Linux

Port Linux Driver to Unix

I looking for someone who can help me port a Linux Driver to a OpenBSD( OS X ) Unix Driver. The driver is for a Logic Controls LD9000 USB Customer Display. The currently don't have a driver for the mac operating system, but they do however have one for the Linux OS. So, I am just trying to... (8 Replies)
Discussion started by: ghost1
8 Replies

2. Shell Programming and Scripting

Cross Tab

I need help to do cross tab file input 20160101|ASIA|CHINA|2000 20160101|ASIA|INDIA|3000 20160102|ASIA|CHINA|4000 20160103|ASIA|CHINA|2000 20160103|AFRIKA|ZAMBIA|2000 20160104|ASIA|CHINA|5000 expected output CONTINENT|NATION|20160101|20160102|20160103|20160104... (1 Reply)
Discussion started by: radius
1 Replies