php_memcache 下载-安装-配置-学习
Posted 贝尔塔猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php_memcache 下载-安装-配置-学习相关的知识,希望对你有一定的参考价值。
http://blog.163.com/sun_jian_zhang/blog/static/1878040412013102610415184/
memcache是php的一个扩展,用于php管理memcached,php-memcache.dll。
如果安装了memcached不安装扩展,那么php无法操控memcached,但是命令行使用起来没有问题
如果安装了memcache扩展但是没有安装memcached服务,那么这个就无法使用
只有同时安装了memcached服务和memcache扩展才可以在PHP中使用memcached提高动态网站性能
1. php_memcache.dll 下载:
下载地址:php_memcache.zip http://www.2cto.com/uploadfile/2012/0713/20120713110240777.zip
2. 把php_memcache.dll放到php的ext目录:
2. 把php_memcache.dll放到php的ext目录:
例如:D:\WampServer\bin\php\php5.3.11\ext\php_memcache.dll
3. 打开 php.ini 文件:
我的php.ini的位置:D:\WampServer\bin\php\php5.3.11\php.ini
4. 在 php.ini上增加一行:
extension=php_memcache.dll
5. 重启Wampserver的apache服务
二、安装memcached
1. Memcached-win64 下载:
a. 下载最新版:http://blog.couchbase.com/memcached-windows-64-bit-pre-release-available
b. 直接下载: memcached-win64-1.4.4-14.zip
D:\WampServer\bin\memcached\memcached.exe
3. 在终端(也即cmd命令界面)下输入以下命令安装windows服务:
D:\WampServer\bin\memcached>memcached.exe -d install
4. 再输入下面命令启动:
D:\WampServer\bin\memcached>memcached.exe -d start
OK~~大功告成
打开phpinfo()页面
以上是关于php_memcache 下载-安装-配置-学习的主要内容,如果未能解决你的问题,请参考以下文章