Memcached Functions for MySQL 0.8 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Memcached Functions for MySQL 0.8 (Default branch)
# 1  
Old 01-31-2009
Memcached Functions for MySQL 0.8 (Default branch)

This is a set of MySQL UDFs (user defined functions) to work with memcached using libmemcached. With these functions, you can get, set, append, prepend, delete, increment, and decrement objects in memcached, provide statistics, and set which servers to use and which behavior the server connections will use. These functions can be combined with MySQL triggers. You can also use memcached as a global sequence generator for MySQL by making use of the increment function. These functions are compatible with all versions of MySQL.License: GNU General Public License (GPL)Changes:
memc_servers_behavior_get(''), memc_list_distribution_types(), memc_list_hash_types(), memc_behavior_get() (an alias to memc_servers_behavior_get() ), and memc_behavior_set() (an alias to memc_servers_behavior_set() ) functions were added. memc_servers_behavior_set() now works for all types of behaviors - Boolean, named behaviors (string), and numeric.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
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)