标签:
1、下载redis的windows应用程序,支持32位和64位,根据实际情况下载
下载地址: https://github.com/dmajkic/redis/downloads
2、将相应的程序copy到你所需要的目录中,在这里我使用的64位,放到E:\redis目录
3、启动redis服务端:打开一个cmd窗口,先切换到redis所放目录(E:\redis),运行 redis-server.exe redis.conf
注意redis.conf为配置文件,主要配置了redis所使用的端口等信息(如果不写则默认redis.conf)
有的下载的redis压缩包里没有redis.conf,我把默认的redis.conf的文件内容放在文章最后。
注意:此窗口为redis服务端运行窗口,关闭后则redis关闭。
4、启动redis客户端:另开一个cmd窗口,进入目录之后运行命令redis-cli.exe -h 127.0.0.1 -p 6379,然后就可以进行操作了
下载地址: https://github.com/nicolasff/phpredis/downloads
根据php的版本来下载相应的扩展,版本必须对应
6、将php_redis.dll和php_igbinary.dll放入php的ext文件夹中,然后再php.ini添加代码(注意这两行代码的先后顺序不能反过来)
extension=php_igbinary.dll
extension=php_redis.dll
7、重启web服务器
8、php测试
<?php
$redis = new Redis();
$redis->connect(‘127.0.0.1‘,6379);
$redis->set(‘test‘,‘hello redis‘);
echo $redis->get(‘test‘);
?>
标签:
原文地址:http://www.cnblogs.com/doubilaile/p/4851846.html