Skip to Content Skip to Search
Methods
D
Included Modules

Instance Public methods

dump(entry)

# File activesupport/lib/active_support/cache.rb, line 870
def dump(entry)
  Marshal.dump(entry)
end

dump_compressed(entry, threshold)

# File activesupport/lib/active_support/cache.rb, line 874
def dump_compressed(entry, threshold)
  Marshal.dump(entry.compressed(threshold))
end