2014-04-29 11:05:45 +00:00
|
|
|
require_relative '../../lib/oga'
|
|
|
|
require 'benchmark'
|
|
|
|
|
|
|
|
xml = File.read(File.expand_path('../../fixtures/big.xml', __FILE__))
|
|
|
|
parser = Oga::XML::Parser.new(xml)
|
|
|
|
|
|
|
|
Benchmark.bmbm(10) do |bench|
|
2014-04-29 12:24:33 +00:00
|
|
|
bench.report '10MB of XML' do
|
2014-04-29 11:05:45 +00:00
|
|
|
parser.parse
|
|
|
|
end
|
|
|
|
end
|