上传者: 38735101
|
上传时间: 2021-11-02 00:05:31
|
文件大小: 32KB
|
文件类型: -
安装 memcached
yum install -y memcached
#启动memcached服务,端口11211,以nobody身份启动,-d后台模式运行
memcached -p11211 -u nobody -d
#将自己的IP设为灰度测试的IP
telnet 127.0.0.1 11211
set 119.32.216.122 0 0 1
1
quit
安装 memcached for lua
wget https://github.com/openresty/lua-resty-memcached/archive/v0.11.tar.gz
tar -zxvf v0.11