I am looking for real-world scenarious for using Web Workers API.

link|improve this question

Are they supported by mobile/webkit platforms? – danp May 5 '10 at 13:42
Don't know for sure, but would guess they are. – Sergey Ilinsky May 5 '10 at 13:44
feedback

3 Answers

up vote 11 down vote accepted
  • John Resig (of jQuery fame) has a bunch of interesting examples of using web workers here - games, graphics, crypto.

  • Another use is Web I/O - in other words, polling URLs in background. That way you don't block the UI waiting for polling results.

  • Another practical use: in Bespin, they’re using Web Workers to do the syntax highlighting, which you wouldn’t want to block your code editing whilst you’re using the app.

  • From Mozilla: One way workers are useful is to allow your code to perform processor-intensive calculations without blocking the user interface thread.

    As a practical example, think of an app which has a large table of #s (this is real world, BTW - taken from an app I programmed ~2 years ago). You can change one # in a table via inpput field and a bunch of other numbers in different columns get re-computed in a fairly intensive process.

    The old workflow was: Change the #. Go get coffee while JavaScript crunches through changes to other numbers and the web page is unresponsive for 3 minutes - after I optimized it to hell and back. Get Back with coffee. Change a second #. Repeat many times. Click SAVE button.

    The new workflow with the workers could be: Change the #. Get a status message that something is being recomputed but you can change other #s. Change more #s. When done changing, wait till status changes to "all calculations complete, you can now review the final #s and save".

link|improve this answer
Great links! I had never heard of Workers ... mmm, Workers. (Time to go take a long, hot shower ...) – Peter Rowell Jul 10 '10 at 0:59
I know this is a two-year-old answer, but I just wanted to mention that you shouldn't need Web Workers for item #2 (polling URLs). XHR happens asynchronously and doesn't block; there's no need to run XHR requests on a separate thread. (Of course, in a modern app you'd want to use WebSockets instead of polling.) – josh3736 May 1 at 4:03
feedback

I have used them for sending larger amounts of data from the browser to server. Obviously, you can do this with regular AJAX calls, but if this takes up one of the precious connections per hostname. Also, if the user does a page transition during this process (e.g clicks a link), your JavaScript objects from the previous page go away and you can't process callbacks. When a web worker is used, this activity happens out of band, so you have a better guarantee that it will complete.

link|improve this answer
feedback

Another Use case:

Compressing/De-compressing files in the background, if you have a lot of images and other media files that are exchanged from the server in compressed format.

link|improve this answer
This shouldn't be happening in JavaScript. Images are already compressed (PNG, JPEG) using algorithms designed to efficiently compress image data. Throwing another layer of compression on top can actually increase the data's size. For other types of data (eg a large JSON file), compression should be handled by the browser using standard HTTP gzipping. If you're doing compression in JavaScript, you're probably doing it wrong. – josh3736 May 1 at 3:59
feedback

Your Answer

 
or
required, but never shown

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