So I have this seriously recursive function that I would like to use with my code. The issue is it doesn't really take advantage of dual core machines because js is single threaded. I have tried using webworkers but don't really know much about multicore programming. Would someone point me to some material that could explain how it is done. I googled to find this sample link but its not really much help without documentation! =/

I would be glad if someone could show me how this could be done without webworkers though! That would be just awesome! =)

I came across this link on whatwg. This is really weird because it explains how to use multicore programming in webworkers etc, but on executing on my chrome browser it throws errors. Same goes with other browsers.

Error: 9Uncaught ReferenceError: Worker is not defined in worker.js

link|improve this question

Nice question since I never heard of webWorkers before. U can find a good docu here developer.mozilla.org/En/Using_web_workers and a coole abstraction here code.google.com/p/jsworker – scheffield Dec 15 '10 at 12:19
Thanks, I have worked with webworkers before and they do a wonderful job of freeing up the UI. Use it for my web app games computations. But I would really like some decent documented code to understand how to use the multicore programming aspects of it. If javascript itself could do it, that would be just awesome but thats a long shot =/ – Shouvik Dec 15 '10 at 12:22
feedback

1 Answer

As far as I remember this is only possible with the new HTML5 standard. The keyword is "Web-Worker"

See also:

HTML5: JavaScript Web Workers

JavaScript Threading With HTML5 Web Workers

link|improve this answer
yeah not looking for "web-workers" reference, I got that from whatwg... specifically looking for multicore programming references with a well documented code. – Shouvik Dec 15 '10 at 12:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.