extend bench somewhat

This commit is contained in:
Sam 2013-12-27 10:19:48 +11:00
parent 02c149ef8e
commit 31ea259624
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ def bench(path)
puts "Running apache bench warmup"
`ab -n 100 "http://127.0.0.1:#{@port}#{path}"`
puts "Benchmarking #{path}"
`ab -n 100 -e tmp/ab.csv "http://127.0.0.1:#{@port}#{path}"`
`ab -n 500 -e tmp/ab.csv "http://127.0.0.1:#{@port}#{path}"`
percentiles = Hash[*[50, 75, 90, 99].zip([]).flatten]
CSV.foreach("tmp/ab.csv") do |percent, time|