-
-
Save RX14/20b64954e621897fa3d5f32bf9ba44fd to your computer and use it in GitHub Desktop.
This file contains 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 characters
require "benchmark" | |
STATUS_CODE = "200" | |
METHOD = "GET" | |
PATH = "api/v1/users" | |
IO = MemoryIO.new(100) | |
Benchmark.ips do |x| | |
x.report "Normal String" do | |
IO << "|#{STATUS_CODE}| #{METHOD} #{PATH}" | |
IO.rewind | |
end | |
x.report "Builder" do | |
IO << '|' << STATUS_CODE << "| " << METHOD << ' ' << PATH | |
IO.rewind | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment