Class: ActiveSupport::Cache::MemCacheStore

Inherits:
Store show all
Defined in:
lib/active_support/cache/mem_cache_store.rb

Overview

A cache store implementation which stores data in Memcached: www.danga.com/memcached/

This is currently the most popular cache store for production websites.

Special features:

  • Clustering and load balancing. One can specify multiple memcached servers, and MemCacheStore will load balance between all available servers. If a server goes down, then MemCacheStore will ignore it until it comes back up.

MemCacheStore implements the Strategy::LocalCache strategy which implements an in memory cache inside of a block.

Direct Known Subclasses

CompressedMemCacheStore

Defined Under Namespace

Modules: LocalCacheWithRaw, Response

Constant Summary collapse

ESCAPE_KEY_CHARS =
/[\x00-\x20%\x7F-\xFF]/n

Instance Attribute Summary

Attributes inherited from Store

#options, #silence

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Store

#cleanup, #delete, #delete_matched, #exist?, #fetch, instrument, instrument=, #mute, #read, #silence!, #write

Constructor Details

#initialize(*addresses) ⇒ MemCacheStore

Creates a new MemCacheStore object, with the given memcached server addresses. Each address is either a host name, or a host-with-port string in the form of “host_name:port”. For example:

ActiveSupport::Cache::MemCacheStore.new("localhost", "server-downstairs.localnetwork:8229")

If no addresses are specified, then MemCacheStore will connect to localhost port 11211 (the default memcached port).

Instead of addresses one can pass in a MemCache-like object. For example:

require 'memcached' # gem install memcached; uses C bindings to libmemcached
ActiveSupport::Cache::MemCacheStore.new(Memcached::Rails.new("localhost:11211"))


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/active_support/cache/mem_cache_store.rb', line 54

def initialize(*addresses)
  addresses = addresses.flatten
  options = addresses.extract_options!
  super(options)

  if addresses.first.respond_to?(:get)
    @data = addresses.first
  else
    mem_cache_options = options.dup
    UNIVERSAL_OPTIONS.each{|name| mem_cache_options.delete(name)}
    @data = self.class.build_mem_cache(*(addresses + [mem_cache_options]))
  end

  extend Strategy::LocalCache
  extend LocalCacheWithRaw
end

Class Method Details

.build_mem_cache(*addresses) ⇒ Object



34
35
36
37
38
39
# File 'lib/active_support/cache/mem_cache_store.rb', line 34

def self.build_mem_cache(*addresses)
  addresses = addresses.flatten
  options = addresses.extract_options!
  addresses = ["localhost:11211"] if addresses.empty?
  MemCache.new(addresses, options)
end

Instance Method Details

#clear(options = nil) ⇒ Object

Clear the entire cache on all memcached servers. This method should be used with care when shared cache is being used.



116
117
118
# File 'lib/active_support/cache/mem_cache_store.rb', line 116

def clear(options = nil)
  @data.flush_all
end

#decrement(name, amount = 1, options = nil) ⇒ Object

Decrement a cached value. This method uses the memcached decr atomic operator and can only be used on values written with the :raw option. Calling it on a value not stored with :raw will initialize that value to zero.



104
105
106
107
108
109
110
111
112
# File 'lib/active_support/cache/mem_cache_store.rb', line 104

def decrement(name, amount = 1, options = nil) # :nodoc:
  options = merged_options(options)
  response = instrument(:decrement, name, :amount => amount) do
    @data.decr(escape_key(namespaced_key(name, options)), amount)
  end
  response == Response::NOT_FOUND ? nil : response.to_i
rescue MemCache::MemCacheError
  nil
end

#increment(name, amount = 1, options = nil) ⇒ Object

Increment a cached value. This method uses the memcached incr atomic operator and can only be used on values written with the :raw option. Calling it on a value not stored with :raw will initialize that value to zero.



90
91
92
93
94
95
96
97
98
# File 'lib/active_support/cache/mem_cache_store.rb', line 90

def increment(name, amount = 1, options = nil) # :nodoc:
  options = merged_options(options)
  response = instrument(:increment, name, :amount => amount) do
    @data.incr(escape_key(namespaced_key(name, options)), amount)
  end
  response == Response::NOT_FOUND ? nil : response.to_i
rescue MemCache::MemCacheError
  nil
end

#read_multi(*names) ⇒ Object

Reads multiple values from the cache using a single call to the servers for all keys. Options can be passed in the last argument.



73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/active_support/cache/mem_cache_store.rb', line 73

def read_multi(*names)
  options = names.extract_options!
  options = merged_options(options)
  keys_to_names = names.inject({}){|map, name| map[escape_key(namespaced_key(name, options))] = name; map}
  raw_values = @data.get_multi(keys_to_names.keys, :raw => true)
  values = {}
  raw_values.each do |key, value|
    entry = deserialize_entry(value)
    values[keys_to_names[key]] = entry.value unless entry.expired?
  end
  values
end

#statsObject

Get the statistics from the memcached servers.



121
122
123
# File 'lib/active_support/cache/mem_cache_store.rb', line 121

def stats
  @data.stats
end