instance method
write_entry
Ruby on Rails 7.1.6
Since v5.2.8.1 PrivateSignature
write_entry(key, entry, **options)
Write an entry to the cache.
Parameters
-
keyreq -
entryreq -
optionskeyrest
Source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 251
def write_entry(key, entry, **options)
write_serialized_entry(key, serialize_entry(entry, **options), **options)
end
Defined in activesupport/lib/active_support/cache/mem_cache_store.rb line 251
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::MemCacheStore