微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

MySQL memcached UDFs

程序名称:MySQL memcached UDFs

授权协议: 未知

操作系统: Linux

开发语言: C/C++

MySQL memcached UDFs 介绍

MysqL memcached UDFs 是 MysqL自定义用以控制 memcached 缓存系统的函数集合。

安装方法

shell> **tar zxf memcached_functions_MysqL-0.5.tar.gz**  
 shell> **cd memcached_functions_MysqL-0.5**  
 shell> **./configure --with-MysqL-config=/usr/local/MysqL/bin/MysqL_config**  
 shell> **make**  
 shell> **make install**  
 shell> **cp /usr/local/lib/libmemcached_functions_MysqL* /usr/local/MysqL/lib/MysqL/plugins  
** MysqL> CREATE FUNCTION memc_get RETURNS STRING SONAME "libmemcached_functions_MysqL.so";  
shell> MysqL <sql/install_functions.sql  
shell> utils/install.pl --silent  
MysqL> SELECT memc_servers_set('192.168.0.1:11211,192.168.0.2:11211');  
MysqL> SELECT memc_set('myid', 'myvalue');  
MysqL> SELECT memc_get('myid')

注:目前该项目网址无法访问。

MySQL memcached UDFs 官网

http://tangent.org/586/Memcached_Functions_for_MySQL.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐