value()
Get the value stored in the cache.
# File activesupport/lib/active_support/cache.rb, line 576 def value if @value val = compressed? ? Marshal.load(Zlib::Inflate.inflate(@value)) : @value unless val.frozen? val.freeze rescue nil end val end end