Class: Rack::Cache::MetaStore::MemCached
- Inherits:
-
MemCacheBase
- Object
- Rack::Cache::MetaStore
- MemCacheBase
- Rack::Cache::MetaStore::MemCached
- Defined in:
- lib/rack/cache/metastore.rb
Constant Summary
Constants inherited from Rack::Cache::MetaStore
DISK, FILE, GAE, GAECACHE, HEAP, MEM, MEMCACHE, MEMCACHED
Instance Attribute Summary collapse
-
#cache ⇒ Object
readonly
The Memcached instance used to communicated with the memcached daemon.
Instance Method Summary collapse
-
#initialize(server = "localhost:11211", options = {}) ⇒ MemCached
constructor
A new instance of MemCached.
- #purge(key) ⇒ Object
- #read(key) ⇒ Object
- #write(key, entries) ⇒ Object
Methods inherited from MemCacheBase
Methods inherited from Rack::Cache::MetaStore
#cache_key, #invalidate, #lookup, #store
Constructor Details
#initialize(server = "localhost:11211", options = {}) ⇒ MemCached
Returns a new instance of MemCached.
333 334 335 336 337 338 339 340 341 |
# File 'lib/rack/cache/metastore.rb', line 333 def initialize(server="localhost:11211", ={}) @cache = if server.respond_to?(:stats) server else require 'memcached' Memcached.new(server, ) end end |
Instance Attribute Details
#cache ⇒ Object (readonly)
The Memcached instance used to communicated with the memcached daemon.
331 332 333 |
# File 'lib/rack/cache/metastore.rb', line 331 def cache @cache end |
Instance Method Details
#purge(key) ⇒ Object
355 356 357 358 359 360 361 |
# File 'lib/rack/cache/metastore.rb', line 355 def purge(key) key = hexdigest(key) cache.delete(key) nil rescue Memcached::NotFound nil end |
#read(key) ⇒ Object
343 344 345 346 347 348 |
# File 'lib/rack/cache/metastore.rb', line 343 def read(key) key = hexdigest(key) cache.get(key) rescue Memcached::NotFound [] end |
#write(key, entries) ⇒ Object
350 351 352 353 |
# File 'lib/rack/cache/metastore.rb', line 350 def write(key, entries) key = hexdigest(key) cache.set(key, entries) end |