mirror of https://mirror.osredm.com/root/redis.git
Add showfreq.rb to SRANDMEMBER analysis tools.
This commit is contained in:
parent
1613f7a572
commit
a317349cb2
|
@ -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}"
|
||||
}
|
Loading…
Reference in New Issue