method

read_serialized_entry

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActiveSupport::Cache::FileStore
read_serialized_entry(key, **) private

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/file_store.rb, line 102
        def read_serialized_entry(key, **)
          File.binread(key) if File.exist?(key)
        rescue => error
          logger.error("FileStoreError (#{error}): #{error.message}") if logger
          nil
        end
Register or log in to add new notes.