]>
Commit | Line | Data |
---|---|---|
ed9b544e | 1 | == redis |
2 | ||
3 | A ruby client library for the redis key value storage system: | |
4 | http://code.google.com/p/redis/wiki/README | |
5 | ||
6 | redis is a key value store with some interesting features: | |
7 | ||
8 | 1. fast | |
9 | 2. 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. |