博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php_memcache 缓存 下载-安装-配置-学习
阅读量:6265 次
发布时间:2019-06-22

本文共 1541 字,大约阅读时间需要 5 分钟。

一、安装php_memcache.dll

phpinfo()

 

查看PHP Extension Build,如TS,VC11

查看Architecture,如X86、X64

查看PHP版本,如5.6.17

 

然后根据这三个条件选择对应的DLL下载

 
1. php_memcache.dll 下载:
5.6系列下载地址:
5.2-5.5系列下载地址:
2. 把php_memcache.dll放到php的ext目录: 
例如:E:\AppServ\php5\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、下载地址:
2. 解压放某个盘下面,比如:
 
E:\memcache\memcached.exe
 
3. 在终端(也即cmd命令界面)下输入以下命令安装windows服务:
 
E:\memcache>memcached.exe -d install
 
4. 再输入下面命令启动:
 
E:\memcache>memcached.exe -d start
 
打开phpinfo()页面
 
 
三、开始使用
基础测试:
$memcache = new Memcache; // instantiating memcache extension class$memcache->connect("localhost",11211); // try 127.0.0.1 instead of localhost// if it is not workingecho "Server's version: " . $memcache->getVersion() . "
\n";// we will create an array which will be stored in cache serialized$testArray = array('horse', 'cow', 'pig');$tmp = serialize($testArray);$memcache->add("key", $tmp, 0,30);echo "Data from the cache:
\n";print_r(unserialize($memcache->get("key")));

 函数封装

//memcachedefine("CACHE_IP", "127.0.0.1");//默认端口define("CACHE_PORT", "11211");function set_cache($key,$value,$expireTime){    $m = new Memcache();    $m->connect(CACHE_IP,CACHE_PORT);    $m->set($key,$value,0,$expireTime);}function get_cache($key){    $m = new Memcache();    $m->connect(CACHE_IP,CACHE_PORT);    return $m->get($key);}

 

调用

set_cache("ProdName", "商品", 10);        echo get_cache("ProdName");

 

转载于:https://www.cnblogs.com/CyLee/p/5599271.html

你可能感兴趣的文章
IO - 同步,异步,阻塞,非阻塞 (亡羊补牢篇)
查看>>
Asp.Net Core实战(干货)
查看>>
获取客户端内网IP
查看>>
ReportServices开发工具
查看>>
JavaScript学习——JavaScript 作用域 事件
查看>>
Codeforces Round #455 (Div. 2)F. AND-permutations[bitmasks]
查看>>
知识树软件的数据流图(DFD图)
查看>>
异步调用与回调机制
查看>>
【086】◀▶ 51CTO中的博客
查看>>
【C017】VBA为多文件夹内文件加表头
查看>>
虚拟机下安装CentOS无法上网的解决方式
查看>>
Servlet/Jsp实现购物车
查看>>
计蒜客 429(腾讯手机地图-pi的精确值)
查看>>
基于CC2530的ZigBee转以太网网关的设计与实现
查看>>
16款创建CSS3动画的jQuery插件
查看>>
2017-6-4 用jQuery 做大图轮播
查看>>
MySQL 8.0.12 基于Windows 安装教程(超级详细)
查看>>
linux启动引导程序配置文件
查看>>
poj 2186: Popular Cows(tarjan基础题)
查看>>
Front_end - - JavaScript
查看>>