Sha256: cdc792f4c8aa04b724c2e6272030fd5ac2d8d78156a7b742db07fb099cb16222

Contents?: true

Size: 1.89 KB

Versions: 49

Compression:

Stored size: 1.89 KB

Contents

require 'active_support/core_ext/benchmark'
require 'active_support/core_ext/hash/keys'

module ActiveSupport
  module Benchmarkable
    # Allows you to measure the execution time of a block in a template and
    # records the result to the log. Wrap this block around expensive operations
    # or possible bottlenecks to get a time reading for the operation. For
    # example, let's say you thought your file processing method was taking too
    # long; you could wrap it in a benchmark block.
    #
    #  <% benchmark 'Process data files' do %>
    #    <%= expensive_files_operation %>
    #  <% end %>
    #
    # That would add something like "Process data files (345.2ms)" to the log,
    # which you can then use to compare timings when optimizing your code.
    #
    # You may give an optional logger level (<tt>:debug</tt>, <tt>:info</tt>,
    # <tt>:warn</tt>, <tt>:error</tt>) as the <tt>:level</tt> option. The
    # default logger level value is <tt>:info</tt>.
    #
    #  <% benchmark 'Low-level files', level: :debug do %>
    #    <%= lowlevel_files_operation %>
    #  <% end %>
    #
    # Finally, you can pass true as the third argument to silence all log
    # activity (other than the timing information) from inside the block. This
    # is great for boiling down a noisy block to just a single statement that
    # produces one log line:
    #
    #  <% benchmark 'Process data files', level: :info, silence: true do %>
    #    <%= expensive_and_chatty_files_operation %>
    #  <% end %>
    def benchmark(message = "Benchmarking", options = {})
      if logger
        options.assert_valid_keys(:level, :silence)
        options[:level] ||= :info

        result = nil
        ms = Benchmark.ms { result = options[:silence] ? logger.silence { yield } : yield }
        logger.send(options[:level], '%s (%.1fms)' % [ message, ms ])
        result
      else
        yield
      end
    end
  end
end

Version data entries

49 entries across 47 versions & 8 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/benchmarkable.rb
activesupport-5.0.7.2 lib/active_support/benchmarkable.rb
activesupport-5.0.7.1 lib/active_support/benchmarkable.rb
activesupport-5.0.7 lib/active_support/benchmarkable.rb
activesupport-5.0.6 lib/active_support/benchmarkable.rb
activesupport-5.0.6.rc1 lib/active_support/benchmarkable.rb
activesupport-5.0.5 lib/active_support/benchmarkable.rb
activesupport-5.0.5.rc2 lib/active_support/benchmarkable.rb
activesupport-5.0.5.rc1 lib/active_support/benchmarkable.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
activesupport-5.0.4 lib/active_support/benchmarkable.rb
activesupport-5.0.4.rc1 lib/active_support/benchmarkable.rb
activesupport-5.0.3 lib/active_support/benchmarkable.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
lazy_record-0.2.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
lazy_record-0.2.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
lazy_record-0.1.9 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
lazy_record-0.1.8 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb
lazy_record-0.1.7 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/benchmarkable.rb