Class: Memcache::Pool

Inherits:
Object show all
Defined in:
lib/memcache.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePool

Returns a new instance of Pool.



438
439
440
441
442
# File 'lib/memcache.rb', line 438

def initialize
  @cache_by_scope = {}
  @cache_by_scope[:default] = Memcache.new(:server => Memcache::LocalServer)
  @fallback = :default
end

Instance Attribute Details

#fallbackObject

Returns the value of attribute fallback.



436
437
438
# File 'lib/memcache.rb', line 436

def fallback
  @fallback
end

Instance Method Details

#[](scope) ⇒ Object



452
453
454
# File 'lib/memcache.rb', line 452

def [](scope)
  @cache_by_scope[scope.to_sym] || @cache_by_scope[fallback]
end

#[]=(scope, cache) ⇒ Object



456
457
458
# File 'lib/memcache.rb', line 456

def []=(scope, cache)
  @cache_by_scope[scope.to_sym] = cache
end

#include?(scope) ⇒ Boolean

Returns:

  • (Boolean)


444
445
446
# File 'lib/memcache.rb', line 444

def include?(scope)
  @cache_by_scope.include?(scope.to_sym)
end

#resetObject



460
461
462
# File 'lib/memcache.rb', line 460

def reset
  @cache_by_scope.values.each {|c| c.reset}
end