method

read_entry

rails latest stable - Class: ActiveSupport::Cache::FileStore
read_entry(key, **options)
private

No documentation available.

# File activesupport/lib/active_support/cache/file_store.rb, line 95
        def read_entry(key, **options)
          if payload = read_serialized_entry(key, **options)
            entry = deserialize_entry(payload)
            entry if entry.is_a?(Cache::Entry)
          end
        end