small simplification

This commit is contained in:
Jim Menard 2009-02-10 15:06:47 -05:00
parent ff417d9ea7
commit 22d4ba8daa
1 changed files with 4 additions and 8 deletions

View File

@ -26,13 +26,11 @@ coll.create_index('foo', 'i')
t0 = Time.new
N.times { |i| coll.insert('i' => i) }
db.error # forces pause until all finished
t1 = Time.new
report('insert', t0, t1, N)
report('insert', t0, Time.new, N)
t0 = Time.new
N.times { coll.find_first }
t1 = Time.new
report('find_first', t0, t1, N)
report('find_first', t0, Time.new, N)
t0 = Time.new
N.times {
@ -40,11 +38,9 @@ N.times {
coll.find('i' => 234).each { }
coll.find('i' => 9876).each { }
}
t1 = Time.new
report('find', t0, t1, N * 3)
report('find', t0, Time.new, N * 3)
h = {'i' => {'$gt' => 200, '$lt' => 200}}
t0 = Time.new
N.times { coll.find(h).each { } }
t1 = Time.new
report('find gt/lt', t0, t1, N)
report('find gt/lt', t0, Time.new, N)