欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

windows下安装redis

程序员文章站 2022-06-10 21:12:49
...
redis扩展下载地址(一定要保证版本的正确性)
http://windows.php.net/downloads/pecl/releases/igbinary/1.2.1/logs/

http://windows.php.net/downloads/pecl/releases/redis/2.2.7/


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

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

设置键值对 set myKey abc

取出键值对 get myKey


设置服务命令

redis-server --service-install redis.windows-service.conf --loglevel verbose


卸载服务:redis-server --service-uninstall

开启服务:redis-server --service-start

停止服务:redis-server --service-stop


特别提醒:
    1.为了预防少扩展,我就把第一个链接包里面的php_igbinary.dll和第二链接包里面将php_redis.dll和php_redis.pdb拷贝至php的ext目录下。
    2.修改php.ini,(PS:此php.ini文件是在Apache目录)在该文件中加入:

; php_redis

    extension=php_igbinary.dll

    extension=php_redis.dll

注意:extension=php_igbinary.dll一定要放在extension=php_redis.dll的前面,否则此扩展不会生效
3.重启Apache后,使用phpinfo查看扩展是否成功安装

----------以下:
代码测试

 
1 <?php
 2 //连接本地的 Redis 服务
 3 $redis = new Redis();
 4 $redis->connect('127.0.0.1', 6379);
 5 echo "Connection to server sucessfully";
 6 //设置 redis 字符串数据
 7 $redis->set("tutorial-name", "Redis tutorial");
 8 // 获取存储的数据并输出
 9 echo "Stored string in redis:: " . $redis->get("tutorial-name");
10 ?>

相关标签: redis