instance method
write_serialized_entry
Ruby on Rails 8.0.4
Since v7.0.10 PrivateSignature
write_serialized_entry(key, payload, **options)
No documentation comment.
Parameters
-
keyreq -
payloadreq -
optionskeyrest
Source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 197
def write_serialized_entry(key, payload, **options)
method = options[:unless_exist] ? :add : :set
expires_in = options[:expires_in].to_i
if options[:race_condition_ttl] && expires_in > 0 && !options[:raw]
# Set the memcache expire a few minutes in the future to support race condition ttls on read
expires_in += 5.minutes
end
rescue_error_with nil do
# Don't pass compress option to Dalli since we are already dealing with compression.
options.delete(:compress)
@data.with { |c| !!c.send(method, key, payload, expires_in, **options) }
end
end
Defined in activesupport/lib/active_support/cache/mem_cache_store.rb line 197
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::MemCacheStore