Source: show | on GitHub
# File activesupport/lib/active_support/cache.rb, line 878 def dump(entry) Marshal.dump(entry) end
# File activesupport/lib/active_support/cache.rb, line 882 def dump_compressed(entry, threshold) Marshal.dump(entry.compressed(threshold)) end