Skip to content

Instantly share code, notes, and snippets.

@nextacademy-private
Created August 31, 2014 09:07
Show Gist options
  • Save nextacademy-private/fcbf5281a58d52b34925 to your computer and use it in GitHub Desktop.
Save nextacademy-private/fcbf5281a58d52b34925 to your computer and use it in GitHub Desktop.
def benchmark
# Your benchmarking code goes here.
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"
@JLikesZzz
Copy link

def benchmark

Your benchmarking code goes here.

start_time = Time.now
yield
end_time = Time.now

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"*100_000_000

running_time = benchmark { long_string.reverse }

puts "string.reverse took #{running_time} seconds to run"

@shankerraman
Copy link

def benchmark

Your benchmarking code goes here.

start_time = Time.now
yield
end_time = Time.now

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