Sha256: 03af7457e846c27049f1a87b0d9291e421197c21b9b7d2b20b285bc27877b3ee

Contents?: true

Size: 539 Bytes

Versions: 15

Compression:

Stored size: 539 Bytes

Contents

require 'rubygems'
require 'gruff'

search = Stats.compute :search
write = Stats.compute :write


g = chart "aaf DRb (write performance)"
g.data :avg, write.map{|r| r[:avg]}
g.data :stddev, write.map{|r| r[:stddev]}
g.write "write_averages.png"

g = chart "aaf DRb (search performance)"
g.data :average, search.map{ |r| r[:avg] }
g.data :stddev, search.map{ |r| r[:stddev] }
g.write "search_averages.png"

g = chart "aaf DRb (search performance (medians))"
g.data :search_median, search.map{ |r| r[:median] }
g.write "search_medians.png"

Version data entries

15 entries across 15 versions & 4 rubygems

Version Path
cehoffman-acts_as_ferret-0.4.4 doc/demo/test/smoke/process_stats.rb
jkraemer-acts_as_ferret-0.4.4 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.5.4 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.5.3 doc/demo/test/smoke/process_stats.rb
watson-acts_as_ferret-0.4.8.2 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.5.2 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.8.2 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.8.1 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.5.1 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.5 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.8.rails3 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.8 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.7 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.6 doc/demo/test/smoke/process_stats.rb
acts_as_ferret-0.4.4 doc/demo/test/smoke/process_stats.rb