Created
August 12, 2022 07:13
-
-
Save anoobbava/714577ea0a30d712b12e73a9f0f7aebe to your computer and use it in GitHub Desktop.
Revisions
-
anoobbava created this gist
Aug 12, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ class BenchmarkEvaluator def initialize(count) @count = count end def execute results = {} Rails.logger.info '===== Enqueuing jobs' benchmark = "Enqueuing #{@count} ActiveJob jobs" results[benchmark] = Benchmark.measure do @count.times do |i| SampleJob.perform_later('hello') end end.real.round(2) Rails.logger.info "Duration: #{results[benchmark]} seconds" Rails.logger.info "Duration: #{results}" end end