Memcached Functions for MySQL 0.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Memcached Functions for MySQL 0.5 (Default branch)
# 1  
Old 05-30-2008
Memcached Functions for MySQL 0.5 (Default branch)

Memcached Functions for MySQL is a set of MySQL UDFs (user defined functions) to work with memcached using libmemcached. With these functions you get, set, append, prepend, and delete objects in memcached. You can also use memcached as a global sequence generator. With these functions you can use triggers to control your object caches. License: GNU General Public License (GPL) Changes:
This release adds expiration argument functionality to all functions that utilize it in libmemcached (set, add, and replace). Behavior has been updated to correspond with the latest libmemcached. An args processing function has been added to reduce redundancy. Tests have been added for expiration testing.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CHI::Driver::Memcached::Fast(3pm)			User Contributed Perl Documentation			 CHI::Driver::Memcached::Fast(3pm)

NAME
CHI::Driver::Memcached::Fast -- Distributed cache via Cache::Memcached::Fast VERSION
version 0.14 SYNOPSIS
use CHI; my $cache = CHI->new( driver => 'Memcached::Fast', 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::Fast 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::Fast, CHI::Driver::Memcached, CHI::Driver::Memcached::libmemcached 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::Fast(3pm)