2015-07-26 07:35:22 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var cluster = require('cluster');
|
2015-12-03 05:39:08 +00:00
|
|
|
var numCores = 2;
|
|
|
|
//var numCores = require('os').cpus().length;
|
2015-07-26 07:35:22 +00:00
|
|
|
var id = (cluster.isMaster && '0' || cluster.worker.id).toString();
|
|
|
|
|
|
|
|
function run() {
|
|
|
|
var mstore = require('./cluster');
|
|
|
|
|
|
|
|
return mstore.create({
|
|
|
|
standalone: null
|
|
|
|
, serve: null
|
|
|
|
, connect: null
|
|
|
|
}).then(function (store) {
|
|
|
|
store.set('foo', 'bar', function (err) {
|
|
|
|
if (err) { console.error(err); return; }
|
|
|
|
|
|
|
|
store.get('baz', function (err, data) {
|
|
|
|
if (err) { console.error(err); return; }
|
2015-12-03 05:39:08 +00:00
|
|
|
if (null !== data) {
|
|
|
|
console.error(id, 'should be null:', data);
|
|
|
|
}
|
2015-07-26 07:35:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
store.get('foo', function (err, data) {
|
|
|
|
if (err) { console.error(err); return; }
|
2015-12-03 05:39:08 +00:00
|
|
|
if ('bar' !== data) {
|
|
|
|
console.error(id, 'should be bar:', data);
|
|
|
|
}
|
|
|
|
|
|
|
|
store.set('quux', { message: 'hey' }, function (/*err*/) {
|
|
|
|
store.get('quux', function (err, data) {
|
|
|
|
if (err) { console.error(err); return; }
|
|
|
|
if (!data || 'hey' !== data.message) {
|
|
|
|
console.error(id, "should be { message: 'hey' }:", data);
|
|
|
|
} else {
|
|
|
|
console.log('Are there any errors above? If not, we passed!');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2015-07-26 07:35:22 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
// not a bad idea to setup the master before forking the workers
|
|
|
|
run().then(function () {
|
|
|
|
var i;
|
|
|
|
|
|
|
|
for (i = 1; i <= numCores; i += 1) {
|
|
|
|
cluster.fork();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
run();
|
|
|
|
}
|
|
|
|
|
|
|
|
// The native Promise implementation ignores errors because... dumbness???
|
|
|
|
process.on('unhandledPromiseRejection', function (err) {
|
|
|
|
console.error('Unhandled Promise Rejection');
|
|
|
|
console.error(err);
|
|
|
|
console.error(err.stack);
|
|
|
|
|
|
|
|
process.exit(1);
|
|
|
|
});
|