|
|
|
@ -42,11 +42,11 @@ async.waterfall([ |
|
|
|
|
, async.apply(commonUtilities.removeDocs, { multi: false }, d, n, profiler) |
|
|
|
|
|
|
|
|
|
// Test with multiple documents
|
|
|
|
|
//, async.apply(commonUtilities.prepareDb, benchDb)
|
|
|
|
|
//, function (cb) { d.loadDatabase(cb); }
|
|
|
|
|
//, async.apply(commonUtilities.insertDocs, d, n, profiler)
|
|
|
|
|
//, function (cb) { profiler.step('MULTI: TRUE'); return cb(); }
|
|
|
|
|
//, async.apply(commonUtilities.updateDocs, { multi: true }, d, n, profiler)
|
|
|
|
|
, async.apply(commonUtilities.prepareDb, benchDb) |
|
|
|
|
, function (cb) { d.loadDatabase(cb); } |
|
|
|
|
, async.apply(commonUtilities.insertDocs, d, n, profiler) |
|
|
|
|
, function (cb) { profiler.step('MULTI: TRUE'); return cb(); } |
|
|
|
|
, async.apply(commonUtilities.removeDocs, { multi: true }, d, n, profiler) |
|
|
|
|
], function (err) { |
|
|
|
|
profiler.step("Benchmark finished"); |
|
|
|
|
|
|
|
|
|