the equivalent bson_benchmark to the python one

This commit is contained in:
Mike Dirolf 2009-03-02 16:03:36 -05:00
parent 332c4cfe29
commit f91c59ca7b
1 changed files with 59 additions and 0 deletions

59
bin/bson_benchmark.rb Normal file
View File

@ -0,0 +1,59 @@
#!/usr/bin/env ruby
$LOAD_PATH[0,0] = File.join(File.dirname(__FILE__), '..', 'lib')
require 'mongo'
include XGen::Mongo::Driver
TRIALS = 100000
def encode(doc)
t0 = Time.new
b = BSON.new
TRIALS.times { |i|
b = BSON.new
b.serialize doc
}
print "took: #{Time.now.to_f - t0.to_f}\n"
return b
end
def decode(bson)
t0 = Time.new
doc = nil
TRIALS.times { |i|
doc = bson.deserialize
}
print "took: #{Time.now.to_f - t0.to_f}\n"
return doc
end
TEST_CASES = [{},
{
"hello" => "world"
},
{
"hello" => "world",
"mike" => "something",
"here's" => "another"
},
{
"int" => 200,
"bool" => true,
"an int" => 20,
"a bool" => false
},
{
"this"=> 5,
"is" => {"a" => true},
"big" => [true, 5.5],
"object" => nil
}]
TEST_CASES.each { |doc|
print "case #{doc.inspect}\n"
print "enc bson\n"
enc_bson = encode(doc)
print "dec bson\n"
raise "FAIL" unless doc == decode(enc_bson)
}