]> git.saurik.com Git - redis.git/blobdiff - client-libraries/ruby/README.rdoc
Ruby client library updated. Important changes in this new version!
[redis.git] / client-libraries / ruby / README.rdoc
diff --git a/client-libraries/ruby/README.rdoc b/client-libraries/ruby/README.rdoc
deleted file mode 100644 (file)
index 484fbc3..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-== 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.