class FakeRedis::SortedSetStore

def aggregate_sum out

def aggregate_sum out
  selected_keys.each do |key|
    out[key] = computed_values.inject(0) do |n, hash|
      n + (hash[key] || 0)
    end
  end
end