Redis::Store::Interface

Public Instance Methods

get(key, options = nil) click to toggle source
# File lib/redis/store/interface.rb, line 4
def get(key, options = nil)
  super(key)
end
set(key, value, options = nil) click to toggle source
# File lib/redis/store/interface.rb, line 8
def set(key, value, options = nil)
  super(key, value)
end
setex(key, expiry, value, options = nil) click to toggle source
# File lib/redis/store/interface.rb, line 16
def setex(key, expiry, value, options = nil)
  super(key, expiry, value)
end
setnx(key, value, options = nil) click to toggle source
# File lib/redis/store/interface.rb, line 12
def setnx(key, value, options = nil)
  super(key, value)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.