Class: ActiveSupport::Cache::Store
- Defined in:
- lib/active_support/cache.rb
Overview
An abstract cache store class. There are multiple cache store implementations, each having its own additional features. See the classes under the ActiveSupport::Cache module, e.g. ActiveSupport::Cache::MemCacheStore. MemCacheStore is currently the most popular cache store for large production websites.
Some implementations may not support all methods beyond the basic cache methods of fetch
, write
, read
, exist?
, and delete
.
ActiveSupport::Cache::Store can store any serializable Ruby object.
cache = ActiveSupport::Cache::MemoryStore.new
cache.read('city') # => nil
cache.write('city', "Duckburgh")
cache.read('city') # => "Duckburgh"
Keys are always translated into Strings and are case sensitive. When an object is specified as a key and has a cache_key
method defined, this method will be called to define the key. Otherwise, the to_param
method will be called. Hashes and Arrays can also be used as keys. The elements will be delimited by slashes, and the elements within a Hash will be sorted by key so they are consistent.
cache.read('city') == cache.read(:city) # => true
Nil values can be cached.
If your cache is on a shared infrastructure, you can define a namespace for your cache entries. If a namespace is defined, it will be prefixed on to every key. The namespace can be either a static value or a Proc. If it is a Proc, it will be invoked when each key is evaluated so that you can use application logic to invalidate keys.
cache.namespace = -> { @last_mod_time } # Set the namespace to a variable
@last_mod_time = Time.now # Invalidate the entire cache by changing namespace
Cached data larger than 1kB are compressed by default. To turn off compression, pass compress: false
to the initializer or to individual fetch
or write
method calls. The 1kB compression threshold is configurable with the :compress_threshold
option, specified in bytes.
Direct Known Subclasses
FileStore, MemCacheStore, MemoryStore, NullStore, RedisCacheStore, ActiveSupport::Cache::Strategy::LocalCache::LocalStore
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#silence ⇒ Object
(also: #silence?)
readonly
Returns the value of attribute silence.
Instance Method Summary collapse
-
#cleanup(options = nil) ⇒ Object
Cleanups the cache by removing expired entries.
-
#clear(options = nil) ⇒ Object
Clears the entire cache.
-
#decrement(name, amount = 1, options = nil) ⇒ Object
Decrements an integer value in the cache.
-
#delete(name, options = nil) ⇒ Object
Deletes an entry in the cache.
-
#delete_matched(matcher, options = nil) ⇒ Object
Deletes all entries with keys matching the pattern.
-
#exist?(name, options = nil) ⇒ Boolean
Returns
true
if the cache contains an entry for the given key. -
#fetch(name, options = nil) ⇒ Object
Fetches data from the cache, using the given key.
-
#fetch_multi(*names) ⇒ Object
Fetches data from the cache, using the given keys.
-
#increment(name, amount = 1, options = nil) ⇒ Object
Increments an integer value in the cache.
-
#initialize(options = nil) ⇒ Store
constructor
Creates a new cache.
-
#mute ⇒ Object
Silences the logger within a block.
-
#read(name, options = nil) ⇒ Object
Reads data from the cache, using the given key.
-
#read_multi(*names) ⇒ Object
Reads multiple values at once from the cache.
-
#silence! ⇒ Object
Silences the logger.
-
#write(name, value, options = nil) ⇒ Object
Writes the value to the cache, with the key.
-
#write_multi(hash, options = nil) ⇒ Object
Cache Storage API to write multiple values at once.
Constructor Details
#initialize(options = nil) ⇒ Store
Creates a new cache. The options will be passed to any write method calls except for :namespace
which can be used to set the global namespace for the cache.
183 184 185 |
# File 'lib/active_support/cache.rb', line 183 def initialize( = nil) @options = ? .dup : {} end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
160 161 162 |
# File 'lib/active_support/cache.rb', line 160 def @options end |
#silence ⇒ Object (readonly) Also known as: silence?
Returns the value of attribute silence.
160 161 162 |
# File 'lib/active_support/cache.rb', line 160 def silence @silence end |
Instance Method Details
#cleanup(options = nil) ⇒ Object
Cleanups the cache by removing expired entries.
Options are passed to the underlying cache implementation.
All implementations may not support this method.
505 506 507 |
# File 'lib/active_support/cache.rb', line 505 def cleanup( = nil) raise NotImplementedError.new("#{self.class.name} does not support cleanup") end |
#clear(options = nil) ⇒ Object
Clears the entire cache. Be careful with this method since it could affect other processes if shared cache is being used.
The options hash is passed to the underlying cache implementation.
All implementations may not support this method.
515 516 517 |
# File 'lib/active_support/cache.rb', line 515 def clear( = nil) raise NotImplementedError.new("#{self.class.name} does not support clear") end |
#decrement(name, amount = 1, options = nil) ⇒ Object
Decrements an integer value in the cache.
Options are passed to the underlying cache implementation.
All implementations may not support this method.
496 497 498 |
# File 'lib/active_support/cache.rb', line 496 def decrement(name, amount = 1, = nil) raise NotImplementedError.new("#{self.class.name} does not support decrement") end |
#delete(name, options = nil) ⇒ Object
Deletes an entry in the cache. Returns true
if an entry is deleted.
Options are passed to the underlying cache implementation.
453 454 455 456 457 458 459 |
# File 'lib/active_support/cache.rb', line 453 def delete(name, = nil) = () instrument(:delete, name) do delete_entry(normalize_key(name, ), ) end end |
#delete_matched(matcher, options = nil) ⇒ Object
Deletes all entries with keys matching the pattern.
Options are passed to the underlying cache implementation.
All implementations may not support this method.
478 479 480 |
# File 'lib/active_support/cache.rb', line 478 def delete_matched(matcher, = nil) raise NotImplementedError.new("#{self.class.name} does not support delete_matched") end |
#exist?(name, options = nil) ⇒ Boolean
Returns true
if the cache contains an entry for the given key.
Options are passed to the underlying cache implementation.
464 465 466 467 468 469 470 471 |
# File 'lib/active_support/cache.rb', line 464 def exist?(name, = nil) = () instrument(:exist?, name) do entry = read_entry(normalize_key(name, ), ) (entry && !entry.expired? && !entry.mismatched?(normalize_version(name, ))) || false end end |
#fetch(name, options = nil) ⇒ Object
Fetches data from the cache, using the given key. If there is data in the cache with the given key, then that data is returned.
If there is no such data in the cache (a cache miss), then nil
will be returned. However, if a block has been passed, that block will be passed the key and executed in the event of a cache miss. The return value of the block will be written to the cache under the given cache key, and that return value will be returned.
cache.write('today', 'Monday')
cache.fetch('today') # => "Monday"
cache.fetch('city') # => nil
cache.fetch('city') do
'Duckburgh'
end
cache.fetch('city') # => "Duckburgh"
You may also specify additional options via the options
argument. Setting force: true
forces a cache “miss,” meaning we treat the cache value as missing even if it’s present. Passing a block is required when force
is true so this always results in a cache write.
cache.write('today', 'Monday')
cache.fetch('today', force: true) { 'Tuesday' } # => 'Tuesday'
cache.fetch('today', force: true) # => ArgumentError
The :force
option is useful when you’re calling some other method to ask whether you should force a cache write. Otherwise, it’s clearer to just call Cache#write
.
Setting compress: false
disables compression of the cache entry.
Setting :expires_in
will set an expiration time on the cache. All caches support auto-expiring content after a specified number of seconds. This value can be specified as an option to the constructor (in which case all entries will be affected), or it can be supplied to the fetch
or write
method to effect just one entry.
cache = ActiveSupport::Cache::MemoryStore.new(expires_in: 5.minutes)
cache.write(key, value, expires_in: 1.minute) # Set a lower value for one entry
Setting :version
verifies the cache stored under name
is of the same version. nil is returned on mismatches despite contents. This feature is used to support recyclable cache keys.
Setting :race_condition_ttl
is very useful in situations where a cache entry is used very frequently and is under heavy load. If a cache expires and due to heavy load several different processes will try to read data natively and then they all will try to write to cache. To avoid that case the first process to find an expired cache entry will bump the cache expiration time by the value set in :race_condition_ttl
. Yes, this process is extending the time for a stale value by another few seconds. Because of extended life of the previous cache, other processes will continue to use slightly stale data for a just a bit longer. In the meantime that first process will go ahead and will write into cache the new value. After that all the processes will start getting the new value. The key is to keep :race_condition_ttl
small.
If the process regenerating the entry errors out, the entry will be regenerated after the specified number of seconds. Also note that the life of stale cache is extended only if it expired recently. Otherwise a new value is generated and :race_condition_ttl
does not play any role.
# Set all values to expire after one minute.
cache = ActiveSupport::Cache::MemoryStore.new(expires_in: 1.minute)
cache.write('foo', 'original value')
val_1 = nil
val_2 = nil
sleep 60
Thread.new do
val_1 = cache.fetch('foo', race_condition_ttl: 10.seconds) do
sleep 1
'new value 1'
end
end
Thread.new do
val_2 = cache.fetch('foo', race_condition_ttl: 10.seconds) do
'new value 2'
end
end
cache.fetch('foo') # => "original value"
sleep 10 # First thread extended the life of cache by another 10 seconds
cache.fetch('foo') # => "new value 1"
val_1 # => "new value 1"
val_2 # => "original value"
Other options will be handled by the specific cache store implementation. Internally, #fetch calls #read_entry, and calls #write_entry on a cache miss. options
will be passed to the #read and #write calls.
For example, MemCacheStore’s #write method supports the :raw
option, which tells the memcached server to store all values as strings. We can use this option with #fetch too:
cache = ActiveSupport::Cache::MemCacheStore.new
cache.fetch("foo", force: true, raw: true) do
:bar
end
cache.fetch('foo') # => "bar"
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/active_support/cache.rb', line 306 def fetch(name, = nil) if block_given? = () key = normalize_key(name, ) entry = nil instrument(:read, name, ) do |payload| cached_entry = read_entry(key, ) unless [:force] entry = handle_expired_entry(cached_entry, key, ) entry = nil if entry && entry.mismatched?(normalize_version(name, )) payload[:super_operation] = :fetch if payload payload[:hit] = !!entry if payload end if entry get_entry_value(entry, name, ) else save_block_result_to_cache(name, ) { |_name| yield _name } end elsif && [:force] raise ArgumentError, "Missing block: Calling `Cache#fetch` with `force: true` requires a block." else read(name, ) end end |
#fetch_multi(*names) ⇒ Object
Fetches data from the cache, using the given keys. If there is data in the cache with the given keys, then that data is returned. Otherwise, the supplied block is called for each key for which there was no data, and the result will be written to the cache and returned. Therefore, you need to pass a block that returns the data to be written to the cache. If you do not want to write the cache when the cache is not found, use #read_multi.
Options are passed to the underlying cache implementation.
Returns a hash with the data for each of the names. For example:
cache.write("bim", "bam")
cache.fetch_multi("bim", "unknown_key") do |key|
"Fallback value for key: #{key}"
end
# => { "bim" => "bam",
# "unknown_key" => "Fallback value for key: unknown_key" }
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
# File 'lib/active_support/cache.rb', line 416 def fetch_multi(*names) raise ArgumentError, "Missing block: `Cache#fetch_multi` requires a block." unless block_given? = names. = () instrument :read_multi, names, do |payload| read_multi_entries(names, ).tap do |results| payload[:hits] = results.keys payload[:super_operation] = :fetch_multi writes = {} (names - results.keys).each do |name| results[name] = writes[name] = yield(name) end write_multi writes, end end end |
#increment(name, amount = 1, options = nil) ⇒ Object
Increments an integer value in the cache.
Options are passed to the underlying cache implementation.
All implementations may not support this method.
487 488 489 |
# File 'lib/active_support/cache.rb', line 487 def increment(name, amount = 1, = nil) raise NotImplementedError.new("#{self.class.name} does not support increment") end |
#mute ⇒ Object
Silences the logger within a block.
194 195 196 197 198 199 |
# File 'lib/active_support/cache.rb', line 194 def mute previous_silence, @silence = defined?(@silence) && @silence, true yield ensure @silence = previous_silence end |
#read(name, options = nil) ⇒ Object
Reads data from the cache, using the given key. If there is data in the cache with the given key, then that data is returned. Otherwise, nil
is returned.
Note, if data was written with the :expires_in<tt> or <tt>:version
options, both of these conditions are applied before the data is returned.
Options are passed to the underlying cache implementation.
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/active_support/cache.rb', line 340 def read(name, = nil) = () key = normalize_key(name, ) version = normalize_version(name, ) instrument(:read, name, ) do |payload| entry = read_entry(key, ) if entry if entry.expired? delete_entry(key, ) payload[:hit] = false if payload nil elsif entry.mismatched?(version) payload[:hit] = false if payload nil else payload[:hit] = true if payload entry.value end else payload[:hit] = false if payload nil end end end |
#read_multi(*names) ⇒ Object
Reads multiple values at once from the cache. Options can be passed in the last argument.
Some cache implementation may optimize this method.
Returns a hash mapping the names provided to the values found.
373 374 375 376 377 378 379 380 381 382 |
# File 'lib/active_support/cache.rb', line 373 def read_multi(*names) = names. = () instrument :read_multi, names, do |payload| read_multi_entries(names, ).tap do |results| payload[:hits] = results.keys end end end |
#silence! ⇒ Object
Silences the logger.
188 189 190 191 |
# File 'lib/active_support/cache.rb', line 188 def silence! @silence = true self end |
#write(name, value, options = nil) ⇒ Object
Writes the value to the cache, with the key.
Options are passed to the underlying cache implementation.
441 442 443 444 445 446 447 448 |
# File 'lib/active_support/cache.rb', line 441 def write(name, value, = nil) = () instrument(:write, name, ) do entry = Entry.new(value, .merge(version: normalize_version(name, ))) write_entry(normalize_key(name, ), entry, ) end end |
#write_multi(hash, options = nil) ⇒ Object
Cache Storage API to write multiple values at once.
385 386 387 388 389 390 391 392 393 394 395 |
# File 'lib/active_support/cache.rb', line 385 def write_multi(hash, = nil) = () instrument :write_multi, hash, do |payload| entries = hash.each_with_object({}) do |(name, value), memo| memo[normalize_key(name, )] = Entry.new(value, .merge(version: normalize_version(name, ))) end write_multi_entries entries, end end |