class Moneta::Tyrant::Expiration
Public Instance Methods
[](key)
click to toggle source
Calls superclass method
Moneta::Tyrant::Implementation#[]
# File lib/moneta/tyrant.rb, line 45 def [](key) super("#{key}__expiration") end
[]=(key, value)
click to toggle source
Calls superclass method
Moneta::Tyrant::Implementation#[]=
# File lib/moneta/tyrant.rb, line 49 def []=(key, value) super("#{key}__expiration", value) end
delete(key)
click to toggle source
Calls superclass method
# File lib/moneta/tyrant.rb, line 53 def delete(key) super("#{key}__expiration") end