## 下载地址:【选择适合的版本】 http://windows.php.net/downloads/pecl/snaps/redis/ ## 选择合适版本 ![](https://img.kancloud.cn/89/12/89123b28eb1696d9f0e5f641c41dd6c7_1024x883.png) ![](https://img.kancloud.cn/b3/51/b3513ed2efedaf16944d95c6ca88287c_542x181.png) * 红色是redis版本 * 蓝色是php版本 * 绿色是windows 操作系统是64还是32位 ## 解压缩后 将php_redis.dll拷贝至php的ext目录下 ## 修改php.ini (PS:此php.ini文件是在Apache目录)在该文件中加入: extension=php_redis.dll ## 重启Apache后 使用phpinfo查看扩展是否成功安装 ![](https://img.kancloud.cn/07/19/07197b86cc7cb0f800338189f42294a8_1084x328.png) ## 打开redis服务后 可以用如下测试是否能够调用 ``` <?php //连接本地的 Redis 服务 $redis = new Redis(); $redis->connect('127.0.0.1', 6379); echo "Connection to server sucessfully"; //设置 redis 字符串数据 $redis->set("tutorial-name", "Redis tutorial"); // 获取存储的数据并输出 echo "Stored string in redis:: " . $redis->get("tutorial-name"); ``` ps:在运行前须开启本地的redis服务【下载地址:https://redis.io/download】 ## Redis使用 启动命令如下: `redis-server --service-start` 停止命令: `redis-server --service-stop` 还可以安装多个实例 ``` redis-server --service-install –service-name redisService1 –port 10001 redis-server --service-start –service-name redisService1 redis-server --service-install –service-name redisService2 –port 10002 redis-server --service-start –service-name redisService2 redis-server --service-install –service-name redisService3 –port 10003 redis-server --service-start –service-name redisService3 ``` 卸载命令: `redis-server --service-uninstall`