Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
621 B
Ruby
Raw Normal View History

# hll-err.rb - Copyright (C) 2014 Redis Ltd.
# BSD license, See the COPYING file for more information.
#
# Check error of HyperLogLog implementation for different set sizes.
require 'rubygems'
require 'redis'
require 'digest/sha1'
r = Redis.new
r.del('hll')
2014-03-28 22:25:26 +01:00
i = 0
while true do
100.times {
elements = []
1000.times {
ele = Digest::SHA1.hexdigest(i.to_s)
elements << ele
i += 1
}
r.pfadd('hll',elements)
2014-03-28 22:25:26 +01:00
}
approx = r.pfcount('hll')
2014-03-28 22:25:26 +01:00
abs_err = (approx-i).abs
rel_err = 100.to_f*abs_err/i
puts "#{i} vs #{approx}: #{rel_err}%"
end