Corrected update and remove benchmarks

pull/2/head
Louis Chatriot 12 years ago
parent 8f82ab39a3
commit c7871c80b3
  1. 3
      benchmarks/remove.js
  2. 3
      benchmarks/update.js

@ -28,8 +28,7 @@ async.waterfall([
, async.apply(commonUtilities.removeDocs, { multi: false }, d, n, profiler) , async.apply(commonUtilities.removeDocs, { multi: false }, d, n, profiler)
// Test with multiple documents // Test with multiple documents
, async.apply(commonUtilities.prepareDb, benchDb) , function (cb) { d.remove({}, { multi: true }, function () { return cb(); }); }
, function (cb) { d.loadDatabase(cb); }
, async.apply(commonUtilities.insertDocs, d, n, profiler) , async.apply(commonUtilities.insertDocs, d, n, profiler)
, function (cb) { profiler.step('MULTI: TRUE'); return cb(); } , function (cb) { profiler.step('MULTI: TRUE'); return cb(); }
, async.apply(commonUtilities.removeDocs, { multi: true }, d, n, profiler) , async.apply(commonUtilities.removeDocs, { multi: true }, d, n, profiler)

@ -28,8 +28,7 @@ async.waterfall([
, async.apply(commonUtilities.updateDocs, { multi: false }, d, n, profiler) , async.apply(commonUtilities.updateDocs, { multi: false }, d, n, profiler)
// Test with multiple documents // Test with multiple documents
, async.apply(commonUtilities.prepareDb, benchDb) , function (cb) { d.remove({}, { multi: true }, function (err) { return cb(); }); }
, function (cb) { d.loadDatabase(cb); }
, async.apply(commonUtilities.insertDocs, d, n, profiler) , async.apply(commonUtilities.insertDocs, d, n, profiler)
, function (cb) { profiler.step('MULTI: TRUE'); return cb(); } , function (cb) { profiler.step('MULTI: TRUE'); return cb(); }
, async.apply(commonUtilities.updateDocs, { multi: true }, d, n, profiler) , async.apply(commonUtilities.updateDocs, { multi: true }, d, n, profiler)

Loading…
Cancel
Save