forked from louischatriot/nedb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fa23fc
commit f16b7a9
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
var Datastore = require('../lib/datastore') | ||
, benchDb = 'workspace/remove.bench.db' | ||
, fs = require('fs') | ||
, path = require('path') | ||
, async = require('async') | ||
, commonUtilities = require('./commonUtilities') | ||
, execTime = require('exec-time') | ||
, profiler = new execTime('REMOVE BENCH') | ||
, d = new Datastore(benchDb) | ||
, n = 10000 | ||
; | ||
|
||
if (process.argv[2]) { n = parseInt(process.argv[2], 10); } | ||
|
||
async.waterfall([ | ||
async.apply(commonUtilities.prepareDb, benchDb) | ||
, function (cb) { d.loadDatabase(cb); } | ||
, function (cb) { profiler.beginProfiling(); return cb(); } | ||
, async.apply(commonUtilities.insertDocs, d, n, profiler) | ||
|
||
// Test with remove only one document | ||
, function (cb) { profiler.step('MULTI: FALSE'); return cb(); } | ||
, 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) | ||
], function (err) { | ||
profiler.step("Benchmark finished"); | ||
|
||
if (err) { return console.log("An error was encountered: ", err); } | ||
}); |