Class: Rack::Cache::MetaStore::Dalli
- Inherits:
-
MemCacheBase
- Object
- Rack::Cache::MetaStore
- MemCacheBase
- Rack::Cache::MetaStore::Dalli
- Defined in:
- lib/rack/cache/meta_store.rb
Constant Summary
Constants inherited from Rack::Cache::MetaStore
DISK, FILE, GAE, GAECACHE, HEAP, MEM, MEMCACHE, MEMCACHED
Instance Attribute Summary
Attributes inherited from MemCacheBase
Instance Method Summary collapse
-
#initialize(server = "localhost:11211", options = {}) ⇒ Dalli
constructor
A new instance of Dalli.
- #purge(key) ⇒ Object
- #read(key) ⇒ Object
-
#write(key, entries, ttl = 0) ⇒ Object
Default TTL to zero, interpreted as “don’t expire” by Memcached.
Methods inherited from MemCacheBase
Methods inherited from Rack::Cache::MetaStore
#cache_key, #invalidate, #lookup, #store
Constructor Details
#initialize(server = "localhost:11211", options = {}) ⇒ Dalli
Returns a new instance of Dalli.
335 336 337 338 339 340 341 342 343 |
# File 'lib/rack/cache/meta_store.rb', line 335 def initialize(server="localhost:11211", ={}) @cache = if server.respond_to?(:stats) server else require 'dalli' ::Dalli::Client.new(server, ) end end |
Instance Method Details
#purge(key) ⇒ Object
356 357 358 359 |
# File 'lib/rack/cache/meta_store.rb', line 356 def purge(key) cache.delete(hexdigest(key)) nil end |
#read(key) ⇒ Object
345 346 347 348 |
# File 'lib/rack/cache/meta_store.rb', line 345 def read(key) key = hexdigest(key) cache.get(key) || [] end |
#write(key, entries, ttl = 0) ⇒ Object
Default TTL to zero, interpreted as “don’t expire” by Memcached.
351 352 353 354 |
# File 'lib/rack/cache/meta_store.rb', line 351 def write(key, entries, ttl = 0) key = hexdigest(key) cache.set(key, entries, ttl) end |