Simple memory backed cache. This cache is not thread safe and is intended only for serving as a temporary memory cache for a single thread.
# File lib/active_support/cache/strategy/local_cache.rb, line 24
24: def clear(options = nil)
25: @data.clear
26: end
# File lib/active_support/cache/strategy/local_cache.rb, line 37
37: def delete_entry(key, options)
38: !!@data.delete(key)
39: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.