diff --git a/benchmarks/remove.js b/benchmarks/remove.js index 1a471d6..f408af7 100644 --- a/benchmarks/remove.js +++ b/benchmarks/remove.js @@ -28,8 +28,7 @@ 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); } +, function (cb) { d.remove({}, { multi: true }, function () { return 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) diff --git a/benchmarks/update.js b/benchmarks/update.js index f016f80..025a23e 100644 --- a/benchmarks/update.js +++ b/benchmarks/update.js @@ -28,8 +28,7 @@ async.waterfall([ , async.apply(commonUtilities.updateDocs, { multi: false }, d, n, profiler) // Test with multiple documents -, async.apply(commonUtilities.prepareDb, benchDb) -, function (cb) { d.loadDatabase(cb); } +, function (cb) { d.remove({}, { multi: true }, function (err) { return 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)