软件版本:memcached-1.5.6、libevent-2.1.8-stable
安装步骤:
1、将软件包上传到服务器/opt目录下,并解压缩
tar zxvf /opt/memcached-1.5.6.tar.gz -C /opt ## 服务端
tar zxvf /opt/libevent-2.1.8-stable.tar.gz -C /opt ## 事件通知库
2、安装C语言编译器
yum -y install gcc gcc-c++
3、配置事件通知库
cd /opt/libevent-2.1.8-stable/
./configure --prefix=/usr/local/libevent
4、编译&安装
make && make install
5、配置memcached
cd /opt/memcached-1.5.6
./configure \
--prefix=/usr/local/memcached \
--with-libevent=/usr/local/libevent/
6、编译&安装
make && make install
7、将memcached放到bin目录中让系统所能识别
ln -s /usr/local/memcached/bin/* /usr/local/bin
8、启动memcached
memcached -d -m 32m -p 11211 -u root
9、关闭防火墙
systemctl stop firewalld && setenforce 0
yum -y install telnet
telnet 127.0.0.1 11211 ## 从本地进行连接
命令格式:add key flags exptime bytes [noreply]
含义:key:键值 key-value 结构中的 key,用于查找缓存值
exptime:缓存过期时间(以秒为单位,0 表示永远)
bytes:在缓存中存储的字节数
例:
add username 0 0 7
1234567
命令格式:get key1 key2 key3 ...
例:
get username
VALUE username 0 7
1234567
END
命令格式:gets key1 key2...
例:
VALUE username 0 7 1 ## 1代表更新因子(每次修改都会自增1)
1234567
END
更新数据:
set username 0 0 8
12345678
STORED
查看更新后的数据:
gets username
VALUE username 0 8 3
12345678
END
命令格式:
replace key flags exptime bytes [noreply]
value
例:
replace username 0 0 9
123456789
STORED
gets username 0 9 4
VALUE username 0 9 4
123456789
END
命令格式:
cas key flags exptime bytes unique_cas_token [noreply]
value
例:
cas username 0 0 7 4 //检查更新,更新因子相等则更新否则返回
loding
STORED
命令格式:
append key flags exptime bytes [noreply]
value
例:
append username 0 0 7 //键值后追加数据
example
命令格式:delete key [noreply]
例:
delete username
flush_all
stats
1、解压客户端安装包
tar zxvf /opt/memcache-2.2.7.tgz -C /opt
2、因为默认memcache客户端没有配置脚本,所以需要使用PHP去生成
/usr/local/php5/bin/phpize
3、对客户端memcache进行相应配置
./configure \
--enable-memcache \
--with-php-config=/usr/local/php5/bin/php-config
PS:
[ 含义 ]
--enable-memcache \ ## 开启memcache
--with-php-config=/usr/local/php5/bin/php-config ## 指向PHP中的配置
4、编译&安装
make && make install
5、修改PHP配置文件使其能识别memcache模块
vi /usr/local/php5/php.ini ## 编辑PHP配置文件
添加以下内容:
extension_dir="/usr/local/php5/lib/php/extensions/no-debug-zts-20131226/"
extension=memcache.so
6、在客户端测试是否能连接服务器,编写一个测试页面
vi /usr/local/httpd/htdocs/index.php
写入以下内容:
connect('192.168.50.134',11211);
$memcache->set('key','Memcache test Successfull!',0,60);
$result = $memcache->get('key');
unset($memcache);
echo $result;
?>
7、重启http服务
service httpd restart
9、打开浏览器使用浏览器尝试连接menmcache
http://192.168.50.134/index.php ## 我这里的客户机IP
如果返回 Memcache test Successfull! 说明配置成功!