After reading this blog post: http://www.sitepoint.com/javascript-shared-web-workers-html5/

I don't get it. What's the difference between a Worker and a SharedWorker?

link|improve this question

Might be worth checking out whatwg.org/specs/web-apps/current-work/complete/… – James Wiseman Jul 21 '11 at 15:20
feedback

4 Answers

up vote 2 down vote accepted

Very basic distinction: a Worker can only be accessed from the script that created it, a SharedWorker can be accessed by any script that comes from the same domain.

link|improve this answer
Umm, so SharedWorker on a popup via window.open can access others assuming they are on the same origin? What if they are on an entirely new tab, I guess no? – rFactor Jul 21 '11 at 15:22
feedback

SharedWorker's seem to have more functionality then Worker.

Among that functionality is :

  • A shared global scope. All SharedWorker instances share a single global scope.

W3C Spec:

WHATWG Spec:

link|improve this answer
feedback

A shared worker can work with multiple connections. It posts messages to ports to allow communication between various scripts.

A dedicated worker on the other hand is simply tied to its main connection and cannot post messages to other scripts (workers).

link|improve this answer
feedback

Only a shared WebWorker can be used to share live state like this:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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