module ActiveSupport::Cache::NullCoder

def dump(entry)

def dump(entry)
  entry
end

def dump_compressed(entry, threshold)

def dump_compressed(entry, threshold)
  entry.compressed(threshold)
end

def load(payload)

def load(payload)
  payload
end