instance method
value
Ruby on Rails 3.0.20
Since v3.0.20 Last seen in v3.2.22.5Signature
value()
Get the value stored in the cache.
Source
# File activesupport/lib/active_support/cache.rb, line 575
def value
if @value
val = compressed? ? Marshal.load(Zlib::Inflate.inflate(@value)) : @value
unless val.frozen?
val.freeze rescue nil
end
val
end
end
Defined in activesupport/lib/active_support/cache.rb line 575
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::Entry