标签:
http://www.runoob.com/redis/redis-install.html
http://os.51cto.com/art/201403/431103.htm
http://www.cnblogs.com/edisonfeng/p/3571870.html
1安装 https://github.com/ServiceStack/redis-windows 下载
启动命令行 cd /d D:\developTools\redis
启动服务 redis-server.exe redis.windows.conf (redis.windows.conf 455行增加参数:maxheap 1024000000)
启动redis服务的doc窗口,不用关闭,因为服务需要一直执行,关闭服务,直接关闭窗口就行。
新打开一个doc窗口,用自带的客户端工具进行测试 命令【redis-cli.exe】,详细操作如下。。事例展示了一个基本的读写操作,设置set key->age,value->21,get age 得到key的值。^_^
2 开发
<dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.6.1</version> </dependency>
http://flychao88.iteye.com/blog/1527163
http://www.cnblogs.com/edisonfeng/p/3571870.html
标签:
原文地址:http://www.cnblogs.com/clds/p/5032108.html