Skip to Content Skip to Search
Methods
D
Included Modules

Instance Public methods

dump(entry)

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

dump_compressed(entry, threshold)

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