write_entry(key, entry, **options)
Write an entry to the cache.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 229 def write_entry(key, entry, **options) write_serialized_entry(key, serialize_entry(entry, **options), **options) end