method
benchmark
v1.1.1 -
Show latest stable
-
0 notes -
Class: ActionView::Helpers::BenchmarkHelper
- 1.0.0 (0)
- 1.1.0 (0)
- 1.1.1 (0)
- 1.1.6 (0)
- 1.2.0 (0)
- 1.2.6 (0)
- 2.0.0 (11)
- 2.0.1 (0)
- 2.0.3 (0)
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.2 (14)
- 2.3.8 (0)
- 3.0.0
- 3.0.5
- 3.0.7
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.3
- 3.2.8
- 3.2.13
- What's this?
benchmark(message = "Benchmarking", level = :info)
public
Measures the execution time of a block in a template and reports the result to the log. Example:
<% benchmark "Notes section" do %> <%= expensive_notes_operation %> <% end %>
Will add something like "Notes section (0.34523)" to the log.
You may give an optional logger level as the second argument (:debug, :info, :warn, :error). The default is :info.


