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
SQL::ReservedWords::MySQL(3pm)				User Contributed Perl Documentation			    SQL::ReservedWords::MySQL(3pm)

NAME
SQL::ReservedWords::MySQL - Reserved SQL words by MySQL SYNOPSIS
if ( SQL::ReservedWords::MySQL->is_reserved( $word ) ) { print "$word is a reserved MySQL word!"; } DESCRIPTION
Determine if words are reserved by MySQL. METHODS
is_reserved( $word ) Returns a boolean indicating if $word is reserved by either MySQL 3.2, 4.0, 4.1, 5.0 or 5.1. is_reserved_by_mysql3( $word ) Returns a boolean indicating if $word is reserved by MySQL 3.2. is_reserved_by_mysql4( $word ) Returns a boolean indicating if $word is reserved by either MySQL 4.0 or 4.1. is_reserved_by_mysql5( $word ) Returns a boolean indicating if $word is reserved by either MySQL 5.0 or 5.1. reserved_by( $word ) Returns a list with MySQL versions that reserves $word. words Returns a list with all reserved words. EXPORTS
Nothing by default. Following subroutines can be exported: is_reserved is_reserved_by_mysql3 is_reserved_by_mysql4 is_reserved_by_mysql5 reserved_by words SEE ALSO
SQL::ReservedWords <http://dev.mysql.com/doc/> AUTHOR
Christian Hansen "chansen@cpan.org" COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.8 2008-03-28 SQL::ReservedWords::MySQL(3pm)