instance method
with_local_cache
Ruby on Rails 2.3.18
Since v2.3.18Signature
with_local_cache()
No documentation comment.
Source
# File activesupport/lib/active_support/cache/strategy/local_cache.rb, line 8
def with_local_cache
Thread.current[thread_local_key] = MemoryStore.new
yield
ensure
Thread.current[thread_local_key] = nil
end
Defined in activesupport/lib/active_support/cache/strategy/local_cache.rb line 8
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::Strategy::LocalCache