mirror of https://github.com/seald/nedb
parent
b74cffc25a
commit
b450cae878
@ -0,0 +1,28 @@ |
|||||||
|
var Datastore = require('../lib/datastore') |
||||||
|
, benchDb = 'workspace/update.bench.db' |
||||||
|
, fs = require('fs') |
||||||
|
, path = require('path') |
||||||
|
, async = require('async') |
||||||
|
, commonUtilities = require('./commonUtilities') |
||||||
|
, execTime = require('exec-time') |
||||||
|
, profiler = new execTime('UPDATE 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) |
||||||
|
, function (cb) { profiler.step('MULTI: FALSE'); return cb(); } |
||||||
|
, async.apply(commonUtilities.updateDocs, { multi: false }, d, n, profiler) |
||||||
|
], function (err) { |
||||||
|
profiler.step("Benchmark finished"); |
||||||
|
|
||||||
|
if (err) { return console.log("An error was encountered: ", err); } |
||||||
|
}); |
Loading…
Reference in new issue