HTTP/2 302
server: nginx
date: Thu, 31 Jul 2025 06:33:50 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090917033225
location: https://web.archive.org/web/20090917033225/https://github.com/ezmobius/redis-rb
server-timing: captures_list;dur=0.698959, exclusion.robots;dur=0.025488, exclusion.robots.policy;dur=0.012171, esindex;dur=0.015611, cdx.remote;dur=4.345117, LoadShardBlock;dur=420.515697, PetaboxLoader3.datanode;dur=60.724379, PetaboxLoader3.resolve;dur=74.538225
x-app-server: wwwb-app213
x-ts: 302
x-tr: 450
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app213; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 31 Jul 2025 06:33:51 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.35
x-archive-orig-date: Thu, 17 Sep 2009 03:32:24 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "f74739d3ea65708414c8af96c688e776"
x-archive-orig-x-runtime: 250ms
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 29142
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 17 Sep 2009 03:32:25 GMT
link:
; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 08 Jun 2009 07:06:03 GMT", ; rel="prev memento"; datetime="Mon, 08 Jun 2009 07:06:03 GMT", ; rel="memento"; datetime="Thu, 17 Sep 2009 03:32:25 GMT", ; rel="next memento"; datetime="Mon, 21 Sep 2009 08:14:28 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 14:36:06 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_11_20090917031240_crawl101_IndexOnly.gpg-c/51_11_20090917033212_crawl101.arc.gz
server-timing: captures_list;dur=0.707010, exclusion.robots;dur=0.030182, exclusion.robots.policy;dur=0.011539, esindex;dur=0.012740, cdx.remote;dur=48.875052, LoadShardBlock;dur=177.737188, PetaboxLoader3.datanode;dur=383.061882, PetaboxLoader3.resolve;dur=183.534062, load_resource;dur=422.413122
x-app-server: wwwb-app213
x-ts: 200
x-tr: 724
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
ezmobius's redis-rb at master - GitHub
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.
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Run the following if you haven't already:
gem sources -a https://gems.github.com
Install the gem(s):
sudo gem install ezmobius-redis
35
219
Wed Sep 02 07:44:56 -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.
Dependencies
rspec -
sudo gem install rspec
redis -
rake redis:install
dtach -
rake dtach:install
git - 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.
This feature is coming soon. Sit tight!