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
.
Methods
Instance Public methods
expires_at() Link
expires_at=(expires_at) Link
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.
expires_in() Link
expires_in=(expires_in) Link
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.