Skip to Content Skip to Search
v7.1.0
class ActiveSupport::Cache::WriteOptions < Object
Methods
E
V

Public instance methods

expires_at()

Permalink
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1078
def expires_at
  @options[:expires_at]
end

expires_at=(expires_at)

Permalink
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1082
def expires_at=(expires_at)
  @options.delete(:expires_in)
  @options[:expires_at] = expires_at
end

expires_in()

Permalink
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1069
def expires_in
  @options[:expires_in]
end

expires_in=(expires_in)

Permalink
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1073
def expires_in=(expires_in)
  @options.delete(:expires_at)
  @options[:expires_in] = expires_in
end

version()

Permalink
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1061
def version
  @options[:version]
end

version=(version)

Permalink
Source code GitHub
# File activesupport/lib/active_support/cache.rb, line 1065
def version=(version)
  @options[:version] = version
end
Definition files