]> git.saurik.com Git - redis.git/blame - client-libraries/ruby/README.markdown
__P completely removed from pqsort.c/h
[redis.git] / client-libraries / ruby / README.markdown
CommitLineData
ed9b544e 1# redis-rb
2
3A ruby client library for the redis key value storage system.
4
5## Information about redis
6
7Redis is a key value store with some interesting features:
81. It's fast.
92. Keys are strings but values can have types of "NONE", "STRING", "LIST", or "SET". List's can be atomically push'd, pop'd, lpush'd, lpop'd and indexed. This allows you to store things like lists of comments under one key while retaining the ability to append comments without reading and putting back the whole list.
10
11See [redis on code.google.com](http://code.google.com/p/redis/wiki/README) for more information.
12
13## Dependencies
14
d7fc9edb 151. rspec -
16 sudo gem install rspec
17
182. redis -
ed9b544e 19
20 rake redis:install
21
222. dtach -
23
24 rake dtach:install
25
d7fc9edb 263. git - git is the new black.
ed9b544e 27
28## Setup
29
30Use the tasks mentioned above (in Dependencies) to get your machine setup.
31
32## Examples
33
34Check the examples/ directory. *Note* you need to have redis-server running first.