Class-style namespace prefixing for Redis.
With Redis Classy, class names become the prefix part of the Redis keys.
class Something < Redis::Classy
end
Something.set 'foo', 'bar' # equivalent of => redis.set 'Something:foo', 'bar'
Something.get 'foo' # equivalent of => redis.get 'Something:foo'
=> "bar"
All methods are delegated to the redis-namespace
gems.
This library contains only 30+ lines of code, yet powerful when you need better abstraction on Redis objects to keep things organized.
- v1.2.0: Raise NoMethodError when commands are not found in redis-rb.
- v1.1.1: Raise exception when Redis::Classy.db is not assigned
- v1.1.0: Explicitly require all files
- v1.0.1: Relaxed version dependency on redis-namespace
- v1.0.0: Play nice with Mongoid
With the vanilla redis
gem, you've been doing this:
redis = Redis.new
redis.set 'foo', 'bar'
redis.get 'foo'
=> "bar"
With the redis-namespace
gem, you can add a prefix in the following manner:
redis_ns = Redis::Namespace.new('ns', :redis => redis)
redis_ns['foo'] = 'bar' # equivalent of => redis.set 'ns:foo', 'bar'
redis_ns['foo'] # equivalent of => redis.get 'ns:foo'
=> "bar"
Now, with the redis-classy
gem, you finally achieve a class-based encapsulation:
class Something < Redis::Classy
end
Something.set 'foo', 'bar' # equivalent of => redis.set 'Something:foo', 'bar'
Something.get 'foo' # equivalent of => redis.get 'Something:foo'
=> "bar"
something = Something.new('foo')
something.set 'bar'
something.get
=> "bar"
gem install redis-classy
In Gemfile:
gem 'redis-classy'
Register the Redis server: (e.g. in config/initializers/redis_classy.rb
for Rails)
Redis::Classy.db = Redis.new(:host => 'localhost')
Now you can write models that inherit Redis::Classy
, automatically prefixing keys with its class name.
You can use any Redis commands on the class, as they are eventually passed to the redis
gem.
class UniqueUser < Redis::Classy
def self.nuke
self.keys.each{|key| self.del(key) }
end
end
UniqueUser.sadd '2011-02-28', '123'
UniqueUser.sadd '2011-02-28', '456'
UniqueUser.sadd '2011-03-01', '789'
UniqueUser.smembers '2011-02-28'
=> ["123", "456"]
UniqueUser.keys
=> ["2011-02-28", "2011-03-01"]
UniqueUser.nuke
UniqueUser.keys
=> []
In most cases you may be just fine with class methods, but by creating an instance with a key, even further binding is possible.
class Counter < Redis::Classy
def initialize(object)
super("#{object.class.name}:#{object.id}")
end
end
class Room < ActiveRecord::Base
end
@room = Room.create
counter = Counter.new(@room)
counter.key
=> "Room:123"
counter.incr
counter.incr
counter.get
=> "2"
You also have access to the non-namespaced, raw Redis instance via Redis::Classy
.
Redis::Classy.keys
=> ["UniqueUser:2011-02-28", "UniqueUser:2011-03-01", "Counter:Room:123"]
Redis::Classy.keys 'UniqueUser:*'
=> ["UniqueUser:2011-02-28", "UniqueUser:2011-03-01"]
Redis::Classy.multi do
UniqueUser.sadd '2011-02-28', '123'
UniqueUser.sadd '2011-02-28', '456'
end
Since the db
attribute is a class instance variable, you can dynamically assign different databases for each class.
UniqueUser.db = Redis::Namespace.new('UniqueUser', :redis => Redis.new(:host => 'another.host'))
If you run fork-based app servers such as Unicorn or Passenger, you need to reconnect to the Redis after forking.
after_fork do
Redis::Classy.db.client.reconnect
end
Note that since Redis Classy assigns a namespaced Redis instance upon the inheritance event of each subclass (class Something < Redis::Classy
), reconnecting the master (non-namespaced) connection that is referenced from all subclasses should probably be the safest and the most efficient way to survive a forking event.
Dependency:
Use case: