method
value
v7.2.3 -
Show latest stable
- Class:
ActiveSupport::Cache::Coder::LazyEntry
value()public
No documentation available.
# File activesupport/lib/active_support/cache/coder.rb, line 106
def value
if !@resolved
@value = @serializer.load(@compressor ? @compressor.inflate(@value) : @value)
@resolved = true
end
@value
end