method

load

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: DupCoder
load(entry) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache/memory_store.rb, line 45
        def load(entry)
          if !entry.compressed? && entry.value.is_a?(String)
            Cache::Entry.new(load_value(entry.value), expires_at: entry.expires_at, version: entry.version)
          else
            entry
          end
        end
Register or log in to add new notes.