tmm1 / redis-rb forked from ezmobius/redis-rb
- Source
- Commits
- Network (41)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
commit 4c1cee4280650580ecee76434f2880ea90f7b5dc
tree f6f8e7558ac4002b1a9a93d72b93c957d093ff2d
parent e35a1e4b13ccbfb298fde72d52338e7bbd18706c
tree f6f8e7558ac4002b1a9a93d72b93c957d093ff2d
parent e35a1e4b13ccbfb298fde72d52338e7bbd18706c
redis-rb /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
LICENSE | Wed Feb 25 19:46:48 -0800 2009 | |
| |
README.markdown | ||
| |
Rakefile | ||
| |
bench.rb | Tue Apr 28 16:13:08 -0700 2009 | |
| |
benchmarking/ | Fri May 08 09:31:53 -0700 2009 | |
| |
bin/ | Sun Mar 01 12:26:00 -0800 2009 | |
| |
examples/ | ||
| |
lib/ | ||
| |
profile.rb | Sun Mar 22 14:14:16 -0700 2009 | |
| |
redis-rb.gemspec | ||
| |
spec/ | ||
| |
speed.rb | Sun Mar 22 14:14:16 -0700 2009 | |
| |
tasks/ |
README.markdown
redis-rb
A ruby client library for the redis key value storage system.
Information about redis
Redis is a key value store with some interesting features: 1. It's fast. 2. 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.
See redis on code.google.com for more information.
Dependencies
redis -
rake redis:installdtach -
rake dtach:installsvn - git is the new black, but we need it for the google codes.
Setup
Use the tasks mentioned above (in Dependencies) to get your machine setup.
Examples
Check the examples/ directory. Note you need to have redis-server running first.

