redis相关

首先看一个redis教程

http://www.yiibai.com/redis/redis_quick_guide.html

redis的桌面管理工具

http://redisdesktop.com/download

redis 官方网站

http://redis.io/download

redis的windows 相关版本

https://github.com/MSOpenTech/redis

windows下面安装redis

http://jingyan.baidu.com/article/f25ef2546119fd482c1b8214.html

http://blog.csdn.net/renfufei/article/details/38474435

http://os.51cto.com/art/201403/431103.htm

使用命令【redis-server.exe  redis.windows.conf】

可能出错,提示maxheap相关错误。

解决办法:

根据提示,是 maxheap 标识有问题,打开配置文件 redis.windows.conf ,搜索 maxheap , 然后直接指定好内容即可.

......

# maxheap <bytes>

maxheap 1024000000

.......

然后再次启动,OK,成功.

windows下面redis的php扩展

http://blog.163.com/fan_xy_qingyuan/blog/static/1889877482014111111283265/

php-redis扩展,扩展的github地址:  https://github.com/nicolasff/phpredis

php_redis.dll https://github.com/phpredis/phpredis/downloads

php_redis.dll下载地址  http://windows.php.net/downloads/pecl/snaps/redis/2.2.5/

自己安装的感觉,php_redis.dll针对不同的php版本也应该不同.

redis中文手册 php 版本 http://www.cnblogs.com/ikodota/archive/2012/03/05/php_redis_cn.html

原文地址:https://www.cnblogs.com/aji2014/p/5561542.html