Skip to content

Instantly share code, notes, and snippets.

@ShopifyEng
Created May 8, 2020 14:10
Show Gist options
  • Save ShopifyEng/e0c05848a1aa2417f06d3a2fa246c7cb to your computer and use it in GitHub Desktop.
Save ShopifyEng/e0c05848a1aa2417f06d3a2fa246c7cb to your computer and use it in GitHub Desktop.
How to Fix Slow Code in Ruby - scir_rails_benchmark.rb
# frozen_string_literal: true
require_relative "../../config/environment"
# Any benchmarking setup goes here...
Benchmark.ips do |x|
x.report("before") { }
x.report("after") { }
x.compare!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment