一、官网
http://redis.io/download http://www.redis.cn
Win的版本是微软自己维护的
二、基本的命令 闲着无事抄文档
1.设置一个用户
#config get requirepass
#config set requirepass 密码
#auth 密码
2.简单的key-value http://www.redis.cn/commands.html#string
#key * 列出所有的key值
#get set 就可以了
#decr、incr 增减整数 decrby、incrby
#append
3.hash的操作 http://www.redis.cn/commands.html#hash
#hset (key,field,value) key map<key,valu>
。。。。。。
4.list操作 http://www.redis.cn/commands.html#list
当做一个数组来考虑?队列 一个key一个队列
5.sets操作 http://www.redis.cn/commands.html#set
集合的操作
6.排序 http://www.redis.cn/commands.html#sorted_set
。。。。。。失效时间、事务、本地保存
三、java的驱动
https://github.com/xetorthio/jedis/releases
maven
基本操作应该和命令差不读
池子
四、额外看客
1.位操作 http://blog.nosqlfan.com/html/3501.html