Sha256: 4dfd07f248399ada442f1d1e5fb5937166232a1fc67cbc67ec45c8cd3b900ac6
Contents?: true
Size: 1.08 KB
Versions: 8
Compression:
Stored size: 1.08 KB
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' begin require 'json' rescue LoadError end require 'yaml' # JSON Section filename = 'benchmark/subjects/ohai.json' json = File.new(filename, 'r') hash = Yajl::Parser.new.parse(json) json.close times = ARGV[0] ? ARGV[0].to_i : 1000 puts "Starting benchmark encoding #{filename} into JSON #{times} times\n\n" Benchmark.bmbm do |x| encoder = Yajl::Encoder.new x.report do puts "Yajl::Encoder#encode" times.times { encoder.encode(hash, StringIO.new) } end if defined?(JSON) x.report do puts "JSON's #to_json" times.times { JSON.generate(hash) } end end end # YAML Section filename = 'benchmark/subjects/ohai.yml' yml = File.new(filename, 'r') data = YAML.load_stream(yml) yml.close puts "Starting benchmark encoding #{filename} into YAML #{times} times\n\n" Benchmark.bmbm do |x| x.report do puts "YAML.dump" times.times { YAML.dump(data, StringIO.new) } end end
Version data entries
8 entries across 8 versions & 1 rubygems