Skip to content

filiptepper/redis-namespace

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Author

Chris Wanstrath :: chris@ozmm.org

About

This gem adds a Redis::Namespace class which can be used to namespace Redis keys.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%