method
serialize_entry
v5.2.3 -
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 431
def serialize_entry(entry, raw: false)
if raw
entry.value.to_s
else
Marshal.dump(entry)
end
end