官方网址:http://code.google.com/p/redis/
官方FAQ: http://code.google.com/p/redis/wiki/FAQ
1.入门手册
redis指南:http://simonwillison.net/static/2010/redis-tutorial/
2.redis的一个大亮点是支持双向列表,单个对象值最大可达1GB,而且list长度可控
3.redis的作者Salvatore被VMware雇佣,可以潜心研究redis
4.redis支持的常见数据类型:binary,lists,sets,sorted sets,hashes,pubsub channels
http://code.google.com/p/redis/wiki/IntroductionToRedisDataTypes
5.redis常用的命令1:exists,keys,rename,expire,expireat,ttl,del,randomkey,renamenx,type
6.redis常用的命令2(strings):set,get,mset,mget,incr,incrby,decr,decrby,append,substr
7.redis操作db的常用命令:select/move/flushdb/flushall/shutdown/slaveof/dbsize/info/monitor/save/bgsave/lastsave/bgrewriteaof
8.redis操作sets的常用命令:select/move/flushdb/flushall/shutdown/slaveof/dbsize/info/monitor/save/bgsave/lastsave/bgrewriteaof
9.jredis(客户端)的源码下载:
git clone http://github.com/alphazero/jredis.git
本文深入探讨了Redis的关键特性,包括双向列表支持、大对象值处理、数据类型多样性、常用命令介绍及操作数据库、集合的基本方法,同时提供了客户端jredis的源码下载链接。

被折叠的 条评论
为什么被折叠?



