write_entry(key, entry, raw: false, **options)
private
Write an entry to the cache.
Requires Redis 2.6.12+ for
extended SET options.
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 357
def write_entry(key, entry, raw: false, **options)
write_serialized_entry(key, serialize_entry(entry, raw: raw, **options), raw: raw, **options)
end