Add showfreq.rb to SRANDMEMBER analysis tools.

This commit is contained in:
antirez 2019-02-18 18:47:49 +01:00
parent 1613f7a572
commit a317349cb2

View File

@ -0,0 +1,23 @@
require 'redis'
r = Redis.new
r.select(9)
r.del("myset");
r.sadd("myset",(0..999).to_a)
freq = {}
100.times {
res = r.pipelined {
1000.times {
r.srandmember("myset")
}
}
res.each{|ele|
freq[ele] = 0 if freq[ele] == nil
freq[ele] += 1
}
}
# Print the frequency each element was yeld to process it with gnuplot
freq.each{|item,count|
puts "#{item} #{count}"
}