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.
74 lines
1.5 KiB
74 lines
1.5 KiB
12 years ago
|
/**
|
||
|
* Functions that are used in several benchmark tests
|
||
|
*/
|
||
|
|
||
|
var customUtils = require('../lib/customUtils')
|
||
|
, fs = require('fs')
|
||
|
, path = require('path')
|
||
|
;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Ensure the workspace exists and the db is empty
|
||
|
*/
|
||
|
module.exports.prepareDb = function (filename, cb) {
|
||
|
customUtils.ensureDirectoryExists(path.dirname(filename), function () {
|
||
|
fs.exists(filename, function (exists) {
|
||
|
if (exists) {
|
||
|
fs.unlink(filename, cb);
|
||
|
} else { return cb(); }
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Return an array with the numbers from 0 to n-1, in a random order
|
||
|
* Useful to get fair tests
|
||
|
*/
|
||
|
module.exports.getRandomArray = function (n) {
|
||
|
var res, next;
|
||
|
|
||
|
if (n === 0) { return []; }
|
||
|
if (n === 1) { return [0]; }
|
||
|
|
||
|
res = getRandomArray(n - 1);
|
||
|
next = Math.floor(Math.random() * n);
|
||
|
res.splice(next, 0, n - 1); // Add n-1 at a random position in the array
|
||
|
|
||
|
return res;
|
||
|
};
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Insert a certain number of documents for testing
|
||
|
* @param {Datastore} d
|
||
|
* @param {Number} n
|
||
|
* @param {Profiler} profiler
|
||
|
*/
|
||
|
module.exports.insertDocs = function (d, n, profiler, cb) {
|
||
|
var beg = new Date()
|
||
|
, i = 0;
|
||
|
|
||
|
profiler.step('Begin inserting ' + n + ' docs');
|
||
|
|
||
|
function insertOne(i) {
|
||
|
if (i === n) { // Finished
|
||
|
console.log("Average time for one insert: " + (profiler.elapsedSinceLastStep() / n) + "ms");
|
||
|
profiler.step('Finished inserting ' + n + ' docs');
|
||
|
return cb();
|
||
|
}
|
||
|
|
||
|
d.insert({ docNumber: i }, function (err) {
|
||
|
process.nextTick(function () {
|
||
|
insertOne(i + 1);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
insertOne(0);
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|