Some snippets to analyze indexes for mongo shell or tools like NoSQLBooster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(function() { | |
// read more: http://www.smartjava.org/content/html5-easily-parallelize-jobs-using-web-workers-and-threadpool | |
var ThreadPool = function(size, isIdleCallback) { | |
// set some defaults | |
console.log("Init ThreadPool"); | |
this.taskQueue = []; | |
this.workerQueue = []; | |
this.poolSize = size || 4; |