Sha256: e6510c1f99344f909e6440c4e70bca7ccc2358238f2442cba918fcaa406d5b59
Contents?: true
Size: 873 Bytes
Versions: 76
Compression:
Stored size: 873 Bytes
Contents
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/..') $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib') require 'rubygems' require 'benchmark' require 'yajl' require 'stringio' begin require 'json' rescue LoadError end times = ARGV[0] ? ARGV[0].to_i : 1000 filename = 'benchmark/subjects/ohai.json' json = File.new(filename, 'r') hash = Yajl::Parser.new.parse(json) json.close puts "Starting benchmark encoding #{filename} #{times} times\n\n" Benchmark.bmbm { |x| encoder = Yajl::Encoder.new x.report { puts "Yajl::Encoder#encode" times.times { encoder.encode(hash, StringIO.new) } } if defined?(JSON) x.report { puts "JSON's #to_json" times.times { JSON.generate(hash) } } end x.report { puts "Marshal.dump" times.times { Marshal.dump(hash) } } }
Version data entries
76 entries across 76 versions & 10 rubygems