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