class FakeRedis::SortedSetStore

def aggregate_min out

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