Class: HTTParty::Icebox::Store::MemoryStore
- Inherits:
-
AbstractStore
- Object
- AbstractStore
- HTTParty::Icebox::Store::MemoryStore
- Defined in:
- lib/httparty_icebox.rb
Overview
Store objects in memory
See HTTParty::Icebox::ClassMethods.cache
Instance Method Summary collapse
- #exists?(key) ⇒ Boolean
- #get(key) ⇒ Object
-
#initialize(options = {}) ⇒ MemoryStore
constructor
A new instance of MemoryStore.
- #set(key, value) ⇒ Object
- #stale?(key) ⇒ Boolean
Constructor Details
#initialize(options = {}) ⇒ MemoryStore
Returns a new instance of MemoryStore.
176 177 178 |
# File 'lib/httparty_icebox.rb', line 176 def initialize(={}) super; @store = {}; self end |
Instance Method Details
#exists?(key) ⇒ Boolean
188 189 190 |
# File 'lib/httparty_icebox.rb', line 188 def exists?(key) !@store[key].nil? end |
#get(key) ⇒ Object
183 184 185 186 187 |
# File 'lib/httparty_icebox.rb', line 183 def get(key) data = @store[key][1] Cache.logger.info("Cache: #{data.nil? ? "miss" : "hit"} (#{key})") data end |
#set(key, value) ⇒ Object
179 180 181 182 |
# File 'lib/httparty_icebox.rb', line 179 def set(key, value) Cache.logger.info("Cache: set (#{key})") @store[key] = [Time.now, value]; true end |
#stale?(key) ⇒ Boolean
191 192 193 194 |
# File 'lib/httparty_icebox.rb', line 191 def stale?(key) return true unless exists?(key) Time.now - created(key) > @timeout end |