1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

More benchmarky fun

git-svn-id: svn://hamptoncatlin.com/haml/trunk@654 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2007-11-23 18:54:58 +00:00
parent e9dc76364b
commit ef78e2667d
2 changed files with 38 additions and 3 deletions

View file

@ -22,8 +22,7 @@ desc temp_desc.chomp
task :benchmark do task :benchmark do
require 'test/benchmark' require 'test/benchmark'
puts '-'*51, "Benchmark: Haml vs. Other Template Engines", '-'*51 puts "Running benchmarks #{ENV['TIMES']} times..." if ENV['TIMES']
puts "Running benchmark #{ENV['TIMES']} times..." if ENV['TIMES']
times = ENV['TIMES'].to_i if ENV['TIMES'] times = ENV['TIMES'].to_i if ENV['TIMES']
Haml.benchmark(times || 100) Haml.benchmark(times || 100)
puts '-'*51 puts '-'*51

View file

@ -24,6 +24,8 @@ module Haml
erb_template = File.read("#{directory}/rhtml/#{template_name}.rhtml") erb_template = File.read("#{directory}/rhtml/#{template_name}.rhtml")
markaby_template = File.read("#{directory}/markaby/#{template_name}.mab") markaby_template = File.read("#{directory}/markaby/#{template_name}.mab")
puts '-'*51, "Haml and Friends: No Caching", '-'*51
times = Benchmark.bmbm do |b| times = Benchmark.bmbm do |b|
b.report("haml:") { runs.times { Haml::Engine.new(haml_template).render } } b.report("haml:") { runs.times { Haml::Engine.new(haml_template).render } }
b.report("erb:") { runs.times { ERB.new(erb_template, nil, '-').render } } b.report("erb:") { runs.times { ERB.new(erb_template, nil, '-').render } }
@ -42,7 +44,41 @@ module Haml
print_result["Erubis", 2] print_result["Erubis", 2]
print_result["Markaby", 3] print_result["Markaby", 3]
puts '', '-' * 50, 'Sass on its own', '-' * 50 puts '', '-' * 50, 'Haml and Friends: Cached', '-' * 50
haml = Haml::Engine.new(haml_template).render_proc
erb = ERB.new(erb_template, nil, '-')
erubis = Object.new
Erubis::Eruby.new(erb_template).def_method(erubis, :render)
mab = Markaby::Template.new(markaby_template)
times = Benchmark.bmbm do |b|
b.report("haml:") { runs.times { haml.call } }
b.report("erb:") { runs.times { erb.render } }
b.report("erubis:") { runs.times { erubis.render } }
b.report("mab:") { runs.times { mab.render } }
end
print_result["ERB", 1]
print_result["Erubis", 2]
print_result["Markaby", 3]
puts '', '-' * 50, 'Haml and Friends: Via ActionView', '-' * 50
require 'active_support'
require 'action_controller'
require 'action_view'
require 'haml/template'
ActionView::Base.register_template_handler("haml", Haml::Template)
@base = ActionView::Base.new(File.dirname(__FILE__))
times = Benchmark.bmbm do |b|
b.report("haml:") { runs.times { @base.render 'haml/templates/standard' } }
b.report("erb:") { runs.times { @base.render 'haml/rhtml/standard' } }
end
print_result["ERB", 1]
puts '', '-' * 50, 'Sass', '-' * 50
sass_template = File.read("#{File.dirname(__FILE__)}/sass/templates/complex.sass") sass_template = File.read("#{File.dirname(__FILE__)}/sass/templates/complex.sass")
Benchmark.bmbm do |b| Benchmark.bmbm do |b|