module ActiveSupport::Cache::Coders::Rails61Coder
def dump(entry)
def dump(entry) Marshal.dump(entry) end
def dump_compressed(entry, threshold)
def dump_compressed(entry, threshold) Marshal.dump(entry.compressed(threshold)) end
def dump(entry) Marshal.dump(entry) end
def dump_compressed(entry, threshold) Marshal.dump(entry.compressed(threshold)) end