method

load_value

rails latest stable - Class: ActiveSupport::Cache::MemoryStore::DupCoder
load_value(string)
private

No documentation available.

# File activesupport/lib/active_support/cache/memory_store.rb, line 64
          def load_value(string)
            if string.start_with?(MARSHAL_SIGNATURE)
              Marshal.load(string)
            else
              string.dup
            end
          end