码迷,mamicode.com
首页 > 其他好文 > 详细

redis

时间:2015-12-09 11:36:00      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

 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

 

redis

标签:

原文地址:http://www.cnblogs.com/clds/p/5032108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!