Skip to content

Instantly share code, notes, and snippets.

@nicolas-brousse
Last active September 12, 2018 13:35
Show Gist options
  • Save nicolas-brousse/a18f8676e056bc1f5eb82368a706fa0e to your computer and use it in GitHub Desktop.
Save nicolas-brousse/a18f8676e056bc1f5eb82368a706fa0e to your computer and use it in GitHub Desktop.
require "benchmark"
require "securerandom"
n = 1_000_000
Benchmark.bm(7) do |x|
x.report("uuid:") { n.times do; SecureRandom.uuid; end }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment