Shared Web Workers are designed to allow multiple pages from the same site (origin) to share a single Web Worker.

However, it's not clear to me from the spec (or other tutorials and information on Shared Workers) whether the Shared Worker will persist if you have only one window/tab from the site and you navigate to another page on the same site.

This would be most useful in the case of a WebSocket connection from the Shared Worker that stays connected as the site is navigated. For example, imagine a stock ticker or chat area that would persist (without having to reconnect the WebSocket) even while the site is navigated.

link|improve this question

67% accept rate
feedback

1 Answer

It seems like this is basically the same problem as the question 'What happens to an HTML5 web worker thread when the tab is closed while it's running?'. I think the key part of the spec is this statement:

User agents may invoke the "kill a worker" processing model on a worker at any time, e.g. in response to user requests, in response to CPU quota management, or when a worker stops being an active needed worker if the worker continues executing even after its closing flag was set to true.

An 'active needed worker' is defined as follows:

A worker is said to be an active needed worker if any of the Document objects in the worker's Documents are fully active.

So, as I understand it, if all the windows referencing a worker are closed then the browser is required by the spec to terminate the worker, but not immediately. Depending on it persisting will therefore be unreliable even if it appears to work occasionally.

In your example my approach would be to load the whole site by Ajax - you're not going to be able to run the Web Workers if your users have JS disabled anyhow, then use the History API to make the user's page address correspond to the actual page (maintaining search engine and non-JS compatibility).

link|improve this answer
My question is whether the transition (link click) from one page to another on the same site (or a reload of the same site) moves the worker into a non-active needed state, and whether this will cause it to be killed. In other words, does it go from active to active or does it transition to non-active first before the next page loads (and if so is it a long enough period to matter)? This is really a question about what browsers actually do and what the intention is. The spec wording itself is ambiguous, which is why I'm asking. – kanaka Feb 18 at 22:04
@kanaka Yes, unloading the page moves it to a state where it should be killed (see step 5), but the spec doesn't require it to be killed immediately. As I said, it may work occasionally, but don't expect it to be reliable. If you want to know what browsers actually do, try it. – robertc Feb 18 at 22: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.