instance method
serialize_entry
Ruby on Rails 6.1.7.10
Since v5.2.8.1 PrivateSignature
serialize_entry(entry, raw: false)
No documentation comment.
Parameters
-
entryreq -
rawkey = false
Source
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 463
def serialize_entry(entry, raw: false)
if raw
entry.value.to_s
else
super(entry)
end
end
Defined in activesupport/lib/active_support/cache/redis_cache_store.rb line 463
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::RedisCacheStore