]> git.saurik.com Git - redis.git/blame - client-libraries/ruby/README.rdoc
redis-cli now checks the arity of vararg commnads
[redis.git] / client-libraries / ruby / README.rdoc
CommitLineData
ed9b544e 1== redis
2
3A ruby client library for the redis key value storage system:
4http://code.google.com/p/redis/wiki/README
5
6redis is a key value store with some interesting features:
7
81. fast
92. keys are strings but values can have types of "NONE","STRING","LIST","SET"
10 list's can be atomicaly push'd, pop'd and lpush'd, lpop'd and indexed so you
11 can store things like lists of comments under one key and still be able to
12 append comments without reading and putting back the whole list.