I was wondering if async.js can use mutliple cores (threads). The source code indicates no, but maybe I am just misinterpreting this comment:
async.parallel:
 * **Note:** `parallel` is about kicking-off I/O tasks in parallel, not about
 * parallel execution of code.  If your tasks do not use any timers or perform
 * any I/O, they will actually be executed in series.  Any synchronous setup
 * sections for each task will happen one after the other.  JavaScript remains
 * single-threaded.
Is there some way to do it in multiple threads? I have some jobs that process DB entries and I need them to run all the time and on all cores.
