Sha256: f0ba8dd5873698a003404e377e575385c445a39b0af7a0104db3f43c04451661

Contents?: true

Size: 476 Bytes

Versions: 3

Compression:

Stored size: 476 Bytes

Contents

require 'bigdecimal'
require 'benchmark'

require File.expand_path('lib/jrjackson')
require File.expand_path('benchmarking/fixtures/bench_options')

filename = File.expand_path(BenchOptions.source)

opts = {raw: true}
dumped_string = File.read(filename)

Benchmark.bmbm("jackson parse symbol + bigdecimal:  ".size) do |x| 
  x.report("jackson parse raw: #{BenchOptions.iterations}") do
    BenchOptions.iterations.times { JrJackson::Json.load(dumped_string, opts) }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jrjackson-0.2.3 benchmarking/individual/raw-jr-sourced.rb
jrjackson-0.2.2 benchmarking/individual/raw-jr-sourced.rb
jrjackson-0.2.1 benchmarking/individual/raw-jr-sourced.rb