Methods
Included Modules
Instance Public methods
dump(entry)
Source:
# File activesupport/lib/active_support/cache.rb, line 873
def dump(entry)
Marshal.dump(entry)
end
dump_compressed(entry, threshold)
Source:
# File activesupport/lib/active_support/cache.rb, line 877
def dump_compressed(entry, threshold)
Marshal.dump(entry.compressed(threshold))
end