method
with_local_cache
v2.3.8 -
Show latest stable
- Class:
ActiveSupport::Cache::Strategy::LocalCache
with_local_cache()public
No documentation available.
# 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