# File lib/redis/store/marshalling.rb, line 16 def get(key, options = nil) _unmarshal super(key), options end
# File lib/redis/store/marshalling.rb, line 20 def mget(*keys) options = keys.flatten.pop if keys.flatten.last.is_a?(Hash) super(*keys).map do |result| _unmarshal result, options end end
# File lib/redis/store/marshalling.rb, line 4 def set(key, value, options = nil) _marshal(value, options) { |value| super encode(key), encode(value), options } end
Generated with the Darkfish Rdoc Generator 2.