This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
redis-rb /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Jun 10 08:55:23 -0700 2009 | |
| |
LICENSE | Wed Feb 25 19:46:48 -0800 2009 | |
| |
README.markdown | Wed Sep 16 20:44:00 -0700 2009 | |
| |
Rakefile | Wed Sep 16 20:34:13 -0700 2009 | |
| |
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/ | Thu Jul 23 10:25:30 -0700 2009 | |
| |
lib/ | Wed Nov 04 13:52:57 -0800 2009 | |
| |
profile.rb | Sun Mar 22 14:14:16 -0700 2009 | |
| |
redis-rb.gemspec | Thu Jul 23 10:25:30 -0700 2009 | |
| |
spec/ | Wed Nov 04 13:52:57 -0800 2009 | |
| |
speed.rb | Sun Mar 22 14:14:16 -0700 2009 | |
| |
tasks/ | Tue Oct 27 16:34:00 -0700 2009 |
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.
See the build on RunCodeRun
Dependencies
rspec -
sudo gem install rspecredis -
rake redis:installdtach -
rake dtach:installgit - git is the new black.
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.







