Merge pull request #63 from hartator/patch-1

minor: update gridstore_benchmark.rb for compatibility with current code.
This commit is contained in:
Kyle Banker 2011-11-28 10:37:14 -08:00
commit 17fc3bd851
1 changed files with 7 additions and 6 deletions

View File

@ -3,7 +3,6 @@ require 'rubygems'
require 'mongo'
include Mongo
include GridFS
db = Connection.new['benchmark-gridfs']
sample_data = File.open(File.join(File.dirname(__FILE__), 'sample_file.pdf'), 'r').read
@ -15,20 +14,22 @@ length = sample_data.length
mb = T * length / 1048576.0
@grid = Grid.new(db)
@grid_file_system = GridFileSystem.new(db)
t1 = Time.now
ids = []
T.times do |n|
ids << @grid.put(sample_data, "mongodb-new-#{n}.pdf")
ids << @grid.put(sample_data, :filename => "mongodb-new-#{n}.pdf")
end
puts "Grid Write: #{mb / (Time.now - t1)} mb/s"
t1 = Time.now
T.times do |n|
GridStore.open(db, "mongodb.pdf-#{n}", 'w') do |f|
@grid_file_system.open("mongodb.pdf-#{n}", 'w') do |f|
f.write(sample_data)
end
end
puts "GridStore Write: #{mb / (Time.now - t1)} mb/s"
puts "GridFileSystem Write: #{mb / (Time.now - t1)} mb/s"
t1 = Time.now
T.times do |n|
@ -38,8 +39,8 @@ puts "Grid Read: #{mb / (Time.now - t1)} mb/s"
t1 = Time.now
T.times do |n|
old_data = GridStore.open(db, "mongodb.pdf-#{n}", 'r') do |f|
old_data = @grid_file_system.open("mongodb.pdf-#{n}", 'r') do |f|
f.read
end
end
puts "GridStore Read: #{mb / (Time.now - t1)} mb/s"
puts "GridFileSystem Read: #{mb / (Time.now - t1)} mb/s"