Flowdock
method

deserialize_entry

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: RedisCacheStore
deserialize_entry(serialized_entry) 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/redis_cache_store.rb, line 451
        def deserialize_entry(serialized_entry)
          if serialized_entry
            entry = Marshal.load(serialized_entry) rescue serialized_entry
            entry.is_a?(Entry) ? entry : Entry.new(entry)
          end
        end
Register or log in to add new notes.