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
Dancer::Session::Memcached(3pm) 			User Contributed Perl Documentation			   Dancer::Session::Memcached(3pm)

NAME
Dancer::Session::Memcached - Memcached-based session backend for Dancer VERSION
version 0.202 DESCRIPTION
This module implements a session engine based on the Memcache API. Session are stored as memcache objects via a list of Memcached servers. CONFIGURATION
The setting session should be set to "memcached" in order to use this session engine in a Dancer application. A mandatory setting is needed as well: "memcached_servers", which should contain a comma-separated list of reachable memecached servers (can be either address:port or sockets). Here is an example configuration that uses this session engine session: "memcached" memcached_servers: "10.0.1.31:11211,10.0.1.32:11211,10.0.1.33:11211,/var/sock/memcached" DEPENDENCY
This module depends on Cache::Memcached. SEE ALSO
See Dancer::Session for details about session usage in route handlers. AUTHOR
Alexis Sukrieh <surkia@sukria.net> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Alexis Sukrieh. 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.12.4 2011-10-21 Dancer::Session::Memcached(3pm)