Skip to content

Instantly share code, notes, and snippets.

@csw
Created June 14, 2012 14:56
Show Gist options
  • Save csw/2930845 to your computer and use it in GitHub Desktop.
Save csw/2930845 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'benchmark'
n = 10000000
line = 's tupBel1.scaffold_3803.1-85889 33686 61 + 85889 ttcaggaagggggcccaaaacgcttgagtggtcagctctta-ttttgcgtttactggatggg'
Benchmark.bmbm do |x|
x.report("basic String#split") do
n.times do
line.split
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment