Home > Backend Development > PHP Tutorial > windows上redis安装和php的redis扩展安装

windows上redis安装和php的redis扩展安装

WBOY
Release: 2016-06-13 13:12:25
Original
883 people have browsed it

windows下redis安装和php的redis扩展安装

?

首先下载一个redis的安装包:

windows:http://code.google.com/p/servicestack/wiki/RedisWindowsDownload

linux:http://code.google.com/p/redis/downloads/list

redis-2.0.0版本:?redis-2.0.0 (186)

redis-2.4.5版本:?redis-2.4.5-win32-win64.zip (61)

解压后,得到一个redis的文件夹,打开文件夹得到如下图的一些文件:

安装包中是不提供redis.conf的,关于配置可以到网上搜索一下,或者从这里直接下载:redis.conf (324)

下载后可以将redis.conf放到上图所示位置!

用命令行,切换到redis的根目录,然后启动redis服务端即redis-server.exe,如下图:

启动后的效果图如下:

当前服务端没有1个客户端连接,因此显示0 clients,

现在分别启动两个客户端,如下图:

这里值得注意的是:当你登录redis-cli.exe的时候,服务端并没有检测到客户端的存在,也就是在客户端执行了第一次操作以后,服务端才检测到这个状态.

在windows下安装php的redis扩展非常简单,下载一个.dll扩展包放到php的ext目录下,在php.ini里边添加一行配置就可以了.

这里提供php5.3版本的redis扩展包:php_redis-5.3.zip (732)

解压并放到php的ext目录下,打开php.ini,增加一行:

?
1
extension=php_redis.dll

然后,重启apache或者nginx或者IIS就可以了.

检测是否安装成功,可以打开phpinfo看下:

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template