mirror of https://github.com/seald/nedb
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.
42 lines
1.3 KiB
42 lines
1.3 KiB
var Datastore = require('../lib/datastore')
|
|
, benchDb = 'workspace/find.bench.db'
|
|
, fs = require('fs')
|
|
, path = require('path')
|
|
, async = require('async')
|
|
, commonUtilities = require('./commonUtilities')
|
|
, execTime = require('exec-time')
|
|
, profiler = new execTime('FIND BENCH')
|
|
, d = new Datastore(benchDb)
|
|
, program = require('commander')
|
|
, n
|
|
;
|
|
|
|
program
|
|
.option('-n --number [number]', 'Size of the collection to test on', parseInt)
|
|
.option('-i --with-index', 'Test with an index')
|
|
.parse(process.argv);
|
|
|
|
n = program.number || 10000;
|
|
|
|
console.log("----------------------------");
|
|
console.log("Test with " + n + " documents");
|
|
console.log(program.withIndex ? "Use an index" : "Don't use an index");
|
|
console.log("----------------------------");
|
|
|
|
async.waterfall([
|
|
async.apply(commonUtilities.prepareDb, benchDb)
|
|
, function (cb) {
|
|
d.loadDatabase(function (err) {
|
|
if (err) { return cb(err); }
|
|
if (program.withIndex) { d.ensureIndex({ fieldName: 'docNumber' }); }
|
|
cb();
|
|
});
|
|
}
|
|
, function (cb) { profiler.beginProfiling(); return cb(); }
|
|
, async.apply(commonUtilities.insertDocs, d, n, profiler)
|
|
, async.apply(commonUtilities.findDocs, d, n, profiler)
|
|
], function (err) {
|
|
profiler.step("Benchmark finished");
|
|
|
|
if (err) { return console.log("An error was encountered: ", err); }
|
|
});
|
|
|