Class: APICache::DalliStore
- Inherits:
-
AbstractStore
- Object
- AbstractStore
- APICache::DalliStore
- Defined in:
- lib/api_cache/dalli_store.rb
Instance Method Summary collapse
-
#exists?(key) ⇒ Boolean
Does a given key exist in the cache?.
-
#expired?(key, timeout) ⇒ Boolean
Has a given time passed since the key was set?.
-
#get(key) ⇒ Object
Get value.
-
#initialize(store) ⇒ DalliStore
constructor
A new instance of DalliStore.
-
#set(key, value) ⇒ Object
Set value.
Constructor Details
#initialize(store) ⇒ DalliStore
Returns a new instance of DalliStore.
3 4 5 |
# File 'lib/api_cache/dalli_store.rb', line 3 def initialize(store) @dalli = store end |
Instance Method Details
#exists?(key) ⇒ Boolean
Does a given key exist in the cache?
20 21 22 |
# File 'lib/api_cache/dalli_store.rb', line 20 def exists?(key) !get(key).nil? end |
#expired?(key, timeout) ⇒ Boolean
Has a given time passed since the key was set?
25 26 27 |
# File 'lib/api_cache/dalli_store.rb', line 25 def expired?(key, timeout) Time.now - @dalli.get("#{key}_created_at") > timeout end |
#get(key) ⇒ Object
Get value.
15 16 17 |
# File 'lib/api_cache/dalli_store.rb', line 15 def get(key) @dalli.get(key) end |
#set(key, value) ⇒ Object
Set value. Returns true if success.
8 9 10 11 12 |
# File 'lib/api_cache/dalli_store.rb', line 8 def set(key, value) @dalli.set(key, value) @dalli.set("#{key}_created_at", Time.now) true end |