I am looking for real-world scenarious for using Web Workers API.
|
|
|||||||||||||
|
|
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. |
|||
|
|
|
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. |
|||||||||
|