wamp php 安装redis,wamp下redis安装及配置

1.查看当前php环境

打开phpinfo();

搜索Architecture (x64|x86) #x86是32位 x64是64位

搜索Thread Safety (enabled|disabled) #enabled是TS版本,disabled是NTS版本

搜索PHP Extension Build (API20131226,TS,VC11) #api版本,VC11是编译器版本

bd3eca16219df1dd8321d3adec8bda38.png

根据图上配置信息,我们需要找的php扩展就是php 5.6 VC11ts-x64

2.下载php_redis.dll

地址一:https://pecl.php.net/package/redis/2.2.7/windows

55a2581e2272afc07eef2e4f0afd942e.png

地址二:https://windows.php.net/downloads/pecl/releases/redis/2.2.7/

b4eb9dd93ce3540893ce144fac66bad0.png

3.文件及配置

将下载的文件解压,然后复制php_redis.dll到C:\wamp\bin\php\php5.6.31\ext

然后编辑apache的php.ini扩展C:\wamp64\bin\apache\apache2.4.27\bin

extension=php_redis.dll

重启wamp后到phpinfo()中查看

40c2cafdac45faf3acfbe87ec080c1b7.png

4.php连接并测试redis数据库

$redis = new Redis();

$redis->connect('127.0.0.1',6379);

$redis->set('year','2018');

echo $redis->get('year');

?>

Redis 安装

下载地址:https://github.com/MSOpenTech/redis/releases

打开一个 cmd 窗口 使用cd命令切换目录到 C:\redis 运行 redis-server.exe redis.windows.conf

这时候另启一个cmd窗口,原来的不要关闭,不然就无法访问服务端了

切换到redis目录下运行 redis-cli.exe -h 127.0.0.1 -p 6379

设置键值对 set year 2018

取出键值对 get year

参考链接:http://blog.csdn.net/leesin2011/article/details/72801629

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值