class ActiveSupport::Cache::WriteOptions
Enables the dynamic configuration of Cache entry options while ensuring that conflicting options are not both set. When a block is given to ActiveSupport::Cache::Store#fetch
, the second argument will be an instance of WriteOptions
.
Public instance methods
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1114
def expires_at
@options[:expires_at]
end
Sets the Cache entry’s expires_at
value. If an expires_in
option was previously set, this will unset it since expires_at
and expires_in
cannot both be set.
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1121
def expires_at=(expires_at)
@options.delete(:expires_in)
@options[:expires_at] = expires_at
end
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1102
def expires_in
@options[:expires_in]
end
Sets the Cache entry’s expires_in
value. If an expires_at
option was previously set, this will unset it since expires_in
and expires_at
cannot both be set.
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1109
def expires_in=(expires_in)
@options.delete(:expires_at)
@options[:expires_in] = expires_in
end
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1094
def version
@options[:version]
end
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1098
def version=(version)
@options[:version] = version
end