We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
运行下面的php文件,如果有输出This is a test!,就表示环境搭建成功。
<?php $mem = new Memcache; //上面的memcache是安装在本机,如果安装在服务器这里就填写对应的服务器ip $mem->connect("127.0.0.1", 11211); //将key的值缓存60秒钟。 $mem->set('key', 'This is a test!', 0, 60); $val = $mem->get('key'); echo $val; ?>
例如cmd中输入 c:\memcached\memcached.exe -d restart 代表重起memcached服务 -p 监听的端口 -l 连接的IP地址, 默认是本机 -d start 启动memcached服务 -d restart 重起memcached服务 -d stop|shutdown 关闭正在运行的memcached服务 -d install 安装memcached服务 -d uninstall 卸载memcached服务 -u 以的身份运行 (仅在以root运行的时候有效) -m 最大内存使用,单位MB。默认64MB -M 内存耗尽时返回错误,而不是删除项 -c 最大同时连接数,默认是1024 -f 块大小增长因子,默认是1.25 -n 最小分配空间,key+value+flags默认是48 -h 显示帮助
c:\memcached\memcached.exe -d restart
<?php //初始化Memcache的对象 $mem = new Memcache; //连接服务器端 //第一个参数是服务器的IP地址(例如本地主机127.0.0.1) //第二个参数是Memcache的开放端口(通过phpinfo查看,一般是11211) $mem->connect("127.0.0.1", 11211); //保存数据到Memcache服务器上 //第一个参数是数据的key //第二个参数是需要保存的数据内容value //第三个参数是一个标记,一般设置为0或者MEMCACHE_COMPRESSED就行了 //第四个参数是缓存的有效期,单位是秒。如果设置为0,则是永远有效 $mem->set('key1', 'This is first value', 0, 60); //保存数组到Memcache服务器上 $arr = array('aaa', 'bbb', 'ccc', 'ddd'); $mem->set('key2', $arr, 0, 60); $val2 = $mem->get('key2'); print_r($val2); echo "<br/>"; //从Memcache服务器获取一条数据 $val = $mem->get('key1'); echo "Get key1 value: " . $val."<br/>"; //用replace方法来替换掉上面key1的值 //replace方法的参数跟set是一样的,不过第一个参数key1是必须是要替换数据内容的key $mem->replace('key1', 'This is replace value', 0, 60); $val = $mem->get('key1'); echo "Get key1 value: " . $val."<br/>"; //删除一个数据 参数就是一个key $mem->delete('key1'); $val = $mem->get('key1'); echo "Get key1 value: " . $val . "<br>"; //清除所有Memcache上的数据,关闭连接 $mem->flush(); $val2 = $mem->get('key2'); echo "Get key2 value: "; print_r($val2); ?>
apt-get install memcached
memcached -d -m 50 -p 11211 -u root
echo stats | nc localhost 11211
kill -9 pid
apt-get install php5-memcache
apt-get undate
find -name memcache.so
cp /usr/lib/php5/xxxxx/memcache.so /opt/lampp/lib/php/extensions/no-debug-non-zts-xxxx/memcache.so
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Windows下的Memcache安装
Memcache环境测试
运行下面的php文件,如果有输出This is a test!,就表示环境搭建成功。
memcache的基本设置
例如cmd中输入
c:\memcached\memcached.exe -d restart
代表重起memcached服务-p 监听的端口
-l 连接的IP地址, 默认是本机
-d start 启动memcached服务
-d restart 重起memcached服务
-d stop|shutdown 关闭正在运行的memcached服务
-d install 安装memcached服务
-d uninstall 卸载memcached服务
-u 以的身份运行 (仅在以root运行的时候有效)
-m 最大内存使用,单位MB。默认64MB
-M 内存耗尽时返回错误,而不是删除项
-c 最大同时连接数,默认是1024
-f 块大小增长因子,默认是1.25
-n 最小分配空间,key+value+flags默认是48
-h 显示帮助
memcache的使用 connect set get replace delete flush
linux memcache安装(基于ubuntu XAMPP)
apt-get install memcached
安装memcache,memcached -d -m 50 -p 11211 -u root
启动memcache,echo stats | nc localhost 11211
查看memcache是否启动成功并且得知进程的pid值,kill -9 pid
(-9表示强制杀死,pid 为进程的pid值)关闭memcache。apt-get install php5-memcache
安装php的memcache扩展(如果安装错误apt-get undate
一下)。find -name memcache.so
找到memcache.so,进行移动cp /usr/lib/php5/xxxxx/memcache.so /opt/lampp/lib/php/extensions/no-debug-non-zts-xxxx/memcache.so
The text was updated successfully, but these errors were encountered: