method
serialize_entry
v7.0.0 -
Show latest stable
- Class:
ActiveSupport::Cache::RedisCacheStore
serialize_entry(entry, raw: false, **options)private
No documentation available.
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 445
def serialize_entry(entry, raw: false, **options)
if raw
entry.value.to_s
else
super(entry, raw: raw, **options)
end
end