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 activesupport/lib/active_support/cache/strategy/local_cache.rb, line 39 def initialize super @data = {} end
© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.