This commit is contained in:
albert
2013-01-14 11:23:43 -05:00
parent 7b4f7c5532
commit 7bca79e71a
11 changed files with 81 additions and 10 deletions

View File

@@ -1,5 +1,28 @@
class StaticController < ApplicationController
def jquery_test
def benchmark
n = 1_000
Benchmark.bm do |x|
x.report("default") do
n.times do
view_context.link_to("test", :controller => "posts", :action => "index", :tags => "abc")
end
end
x.report("posts_path") do
n.times do
view_context.link_to("test", posts_path(:tags => "abc"))
end
end
x.report("fast link to") do
n.times do
view_context.fast_link_to("test", :controller => "posts", :action => "index", :tags => "abc")
end
end
end
render :nothing => true
end
def terms_of_service