Flowdock
read_entry(key, **options) 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 75
        def read_entry(key, **options)
          if File.exist?(key)
            entry = File.open(key) { |f| deserialize_entry(f.read) }
            entry if entry.is_a?(Cache::Entry)
          end
        rescue => e
          logger.error("FileStoreError (#{e}): #{e.message}") if logger
          nil
        end
Register or log in to add new notes.