Skip to content

Instantly share code, notes, and snippets.

@takuyadev
Forked from davidvandusen/benchmark_with_block.rb
Last active April 28, 2023 22:52
Show Gist options
  • Save takuyadev/445d811a8edcb52be875fdd95843082a to your computer and use it in GitHub Desktop.
Save takuyadev/445d811a8edcb52be875fdd95843082a to your computer and use it in GitHub Desktop.
def benchmark
# Mark current time
start_time = Time.now()
# Run long callback / yield command
yield
# Mark end time
end_time = Time.now()
# Calculate total time using marked times
total_time = end_time - start_time
end
# Be careful, pasting this into IRB will take a long time to print.
# It's a loooong string. :)
long_string = "apple" * 100000000
running_time = benchmark { long_string.reverse }
puts "string.reverse took #{running_time} seconds to run"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment