This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 36ef1fa09a410ec866df2754b17684b1f13cf6f1
tree d8dbd8af2921ae4ef56f6c6a511ae3d7e67ee6a4
parent d886a7a5d0ef88e6fc9b3fb223a9ed9e7b1cd7b5
tree d8dbd8af2921ae4ef56f6c6a511ae3d7e67ee6a4
parent d886a7a5d0ef88e6fc9b3fb223a9ed9e7b1cd7b5
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon May 05 16:59:44 -0700 2008 | [nex3] |
| |
LICENSE | Mon May 05 17:17:59 -0700 2008 | [nex3] |
| |
README | Sun May 04 11:11:08 -0700 2008 | [wycats] |
| |
Rakefile | Mon May 05 17:17:59 -0700 2008 | [nex3] |
| |
lib/ | Mon May 05 17:03:36 -0700 2008 | [nex3] |
README
# benchwarmer
# ===========
#
# A gem that provides a nice DSL for a common type of benchmark.
#
# Specifically:
require "rubygems"
require "benchwarmer"
TIMES = 100_000
Benchmark.warmer(TIMES) do # [1]
columns :one, :two, :three # [2]
titles :one => "Option 1", :three => "Option 3" # [3]
group("Squeezing") do # [4]
report "with #squeeze" do # [5]
one { "abc//def//ghi//jkl".squeeze("/") } # [6]
two { "abc///def///ghi///jkl".squeeze("/") }
three { "abc////def////ghi////jkl".squeeze("/") }
end
report "with #gsub" do
one { "abc//def//ghi//jkl".gsub(/\/+/, "/") }
two { "abc///def///ghi///jkl".gsub(/\/+/, "/") }
three { "abc////def////ghi////jkl".gsub(/\/+/, "/") }
end
end
group("Spliting") do
report "with #split" do
one { "aaa/aaa/aaa.bbb.ccc.ddd".split(".") }
two { "aaa//aaa//aaa.bbb.ccc.ddd.eee".split(".") }
three { "aaa///aaa///aaa.bbb.ccc.ddd.eee.fff".split(".") }
end
report "with #match" do
one { "aaa/aaa/aaa.bbb.ccc.ddd".match(/\.([^\.]*)$/) }
two { "aaa//aaa//aaa.bbb.ccc.ddd.eee".match(/\.([^\.]*)$/) }
three { "aaa///aaa///aaa.bbb.ccc.ddd.eee.fff".match(/\.([^\.]*)$/) }
end
end
end
# [1] Specify the number of times you want to run each benchmark
# [2] Specify the column names. By default, they will be displayed as upcased
# versions of themselves.
# [3] Specify prettier titles via a Hash. You do *not* need to specify the
# same column in both columns and titles.
# [4] Specify a group of benchmarks you wish to run
# [5] Specify the name of the report you wish to run
# [6] Optionally, specify several different variants of the benchmark. This could
# be useful if you're testing a new alorithm, and wish to compare a bunch of
# benchmarks against each algorithms. In most cases, you will probably want to
# use the variant below, which does not require columns.
# Output:
# Running the benchmarks 100000 times each...
#
# Option 1 | TWO | Option 3 |
# -----------------------------------------------------
# Squeezing with #squeeze 0.15 | 0.15 | 0.14 |
# with #gsub 0.38 | 0.35 | 0.36 |
# -----------------------------------------------------
# Spliting with #split 0.43 | 0.51 | 0.61 |
# with #match 0.29 | 0.35 | 0.38 |
# -----------------------------------------------------
Benchmark.warmer(TIMES) do
group("Squeezing") do
report "with #squeeze" do
"abc//def//ghi//jkl".squeeze("/")
end
report "with #gsub" do
"abc//def//ghi//jkl".gsub(/\/+/, "/")
end
end
group("Spliting") do
report "with #split" do
"aaa/aaa/aaa.bbb.ccc.ddd".split(".")
end
report "with #match" do
"aaa/aaa/aaa.bbb.ccc.ddd".match(/\.([^\.]*)$/)
end
end
end
# Output:
# Running the benchmarks 100000 times each...
#
# Results |
# ---------------------------------
# Squeezing with #squeeze 0.15 |
# with #gsub 0.37 |
# ---------------------------------
# Spliting with #split 0.43 |
# with #match 0.29 |
# ---------------------------------
Benchmark.warmer(TIMES) do
report "squeezing with #squeeze" do
"abc//def//ghi//jkl".squeeze("/")
end
report "squeezing with #gsub" do
"abc//def//ghi//jkl".gsub(/\/+/, "/")
end
end
# Output:
# Running the benchmarks 100000 times each...
#
# Results |
# ----------------------------------
# squeezing with #squeeze 0.15 |
# squeezing with #gsub 0.34 |
# ----------------------------------




