Class: Rack::Cache::MetaStore::Dalli

Inherits:
MemCacheBase show all
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

#cache

Instance Method Summary collapse

Methods inherited from MemCacheBase

resolve

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", options={})
  @cache =
    if server.respond_to?(:stats)
      server
    else
      require 'dalli'
      ::Dalli::Client.new(server, options)
    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