redict/client-libraries/ruby
2009-03-22 10:30:00 +01:00
..
bin first commit 2009-03-22 10:30:00 +01:00
examples first commit 2009-03-22 10:30:00 +01:00
lib first commit 2009-03-22 10:30:00 +01:00
spec first commit 2009-03-22 10:30:00 +01:00
tasks first commit 2009-03-22 10:30:00 +01:00
bench.rb first commit 2009-03-22 10:30:00 +01:00
fill.rb first commit 2009-03-22 10:30:00 +01:00
LICENSE first commit 2009-03-22 10:30:00 +01:00
Rakefile first commit 2009-03-22 10:30:00 +01:00
README.markdown first commit 2009-03-22 10:30:00 +01:00
README.rdoc first commit 2009-03-22 10:30:00 +01:00

== redis

A ruby client library for the redis key value storage system:
http://code.google.com/p/redis/wiki/README

redis is a key value store with some interesting features:

1. fast
2. keys are strings but values can have types of "NONE","STRING","LIST","SET"
   list's can be atomicaly push'd, pop'd and lpush'd, lpop'd and indexed so you 
   can store things like lists of comments under one key and still be able to 
   append comments without reading and putting back the whole list.