class FakeRedis::SortedSetStore

def aggregate_max out

def aggregate_max out
  selected_keys.each do |key|
    out[key] = computed_values.map {|h| h[key] }.compact.max
  end
end