Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Latest commit

 

History

History
37 lines (21 loc) · 470 Bytes

README.md

File metadata and controls

37 lines (21 loc) · 470 Bytes

redis-namespace

Requires the redis gem.

Namespaces all Redis calls.

r = Redis::Namespace.new(:ns, :redis => @r)
r['foo'] = 1000

This will perform the equivalent of:

redis-cli set ns:foo 1000

Useful when you have multiple systems using Redis differently in your app.

Installation

$ gem install redis-namespace

Testing

$ bundle install
$ rake

Author

Chris Wanstrath :: chris@ozmm.org