The JavaScript Database, for Node.js, nw.js, electron and the browser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nedb/benchmarks/insert.js

54 lines
1.3 KiB

var Datastore = require('../lib/datastore')
, benchDb = 'workspace/insert.bench.db'
, fs = require('fs')
, path = require('path')
, async = require('async')
, customUtils = require('../lib/customUtils')
, n = 10000
, d
;
if (process.argv[2]) { n = parseInt(process.argv[2], 10); }
console.log("Benchmarking insert");
async.waterfall([
function (cb) {
console.log("Preparing database");
customUtils.ensureDirectoryExists(path.dirname(benchDb), function () {
fs.exists(benchDb, function (exists) {
if (exists) {
fs.unlink(benchDb, cb);
} else { return cb(); }
});
});
}
, function (cb) {
d = new Datastore(benchDb);
d.loadDatabase(cb);
}
, function (cb) {
var beg = new Date()
, i = 0;
console.log("Inserting " + n + " documents");
async.whilst( function () { return i < n; }
, function (_cb) {
d.insert({ docNumber: i }, function (err) {
i += 1;
return _cb(err);
});
}, function (err) {
var timeTaken = (new Date()).getTime() - beg.getTime(); // In ms
if (err) { return cb(err); }
console.log("Time taken: " + (timeTaken / 1000) + "s");
return cb();
});
}
], function (err) {
console.log("Benchmark finished");
if (err) { return console.log("An error was encountered: ", err); }
});