Sha256: 88d52cc0310a742e72059116d3089e98fb9f053b80416a66652a3dee3c920044

Contents?: true

Size: 524 Bytes

Versions: 3

Compression:

Stored size: 524 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 = {use_bigdecimal: true, symbolize_keys: true}
dumped_string = File.read(filename)

Benchmark.bmbm("jackson parse symbol + bigdecimal:  ".size) do |x|
  x.report("jackson parse symbol + bigdecimal: #{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/sym-bd-jr-sourced.rb
jrjackson-0.2.2 benchmarking/individual/sym-bd-jr-sourced.rb
jrjackson-0.2.1 benchmarking/individual/sym-bd-jr-sourced.rb