class ActiveSupport::Cache::MemCacheStore

def write_entry(key, entry, **options)

Write an entry to the cache.
def write_entry(key, entry, **options)
  write_serialized_entry(key, serialize_entry(entry, **options), **options)
end