I have a web page that starts a HTML5 SharedWorker script. Chrome memory usage increases every time this page is reloaded (hitting F5).

The worker script is very simple. Every second (using setInterval) a message is sent to the connected port.

It seems like the worker process is terminated and restarted each time I hit F5. This is what I'd expect since the worker isn't actually shared by more than one 'document'. However, I cannot figure out why memory usage increases on every refresh.

Does anybody know why this is happening?

Given that memory increases each time the page is reloaded makes me think that I cannot use shared workers at all in Chrome. Has anyone been able to do so without having memory problems?

UPDATE

This is the hosting HTML:

<div id="output"></div>
<script type="text/javascript" src="/scripts/jquery-1.4.4.js"></script>
<script type="text/javascript">
$(function () {
    var worker = new SharedWorker("/scripts/worker.js") 

    worker.port.onmessage = function(e) {
        $("#output").append($("<div></div>").text(e.data));
    }; 

    worker.port.start();
});
</script>

...and this is worker.js:

var list = [];

setInterval(function () {
    for (var i = 0; i < list.length; ++i) {
        list[i].postMessage("#connections = " + list.length);
    }
}, 1000);

onconnect = function (event) {
    list.push(event.ports[0]);
}; 

The hosting page starts/connects to a shared worker and outputs whatever is received from it.

The worker code keeps a list of connected ports and sends a message to them all once a second.

This is simple stuff. Yet, each time the hosting page is reloaded in Chrome. Memory payload for that tab is increased.

The following shows Chrome's memory usage after a couple of refreshes:

After refreshing a couple of times I've reached 100 MB

...after refreshing some more I'm reaching 250 MB...

Reaching 250 MB after some more refreshing

I'm running out of ideas, thinking this must be a bug in Chrome. Can anyone give me some sort of pointer?

UPDATE 2

Disabling my AdBlock extension seemed to fix the problem:

Running without AdBlock

So I was happy for a little while but it turned out that memory is still being leaked. With AdBlock disabled it's just leaking quite a bit less per page refresh.

link|improve this question
If you launch Chrome with the --purge-memory-button flag, then open Chrome's Task Manager and click the Purge Memory button, does your extension's memory go back to its initial level, or does it still seem bloated? – Chris Aug 19 '11 at 6:52
@Chris It's still bloated. It's the hosting page's memory that's bloated. The background thread (extension) is not bloated, it is restarted (disappear and reappear in the task manager) on every refresh. – Mårten Wikström Aug 19 '11 at 7:20
feedback

1 Answer

First Give a name to your SetInterval myInterval = setInterval("change()", 1000);

Then on PageExit or Leave etc

clearInterval(myInterval); or bind on some other stop event...

Example:

<script language="JavaScript">

/* Image Preloading */
a = new Image();a.src = "screw.jpg";
b = new Image(); b.src = "washer.jpg";
c = new Image(); c.src = "capnut.jpg";
d = new Image(); d.src = "coffee.gif";
//end image preloading

pix = new Array("screw.jpg","washer.jpg","capnut.jpg","coffee.gif");

var i = 0;
var counter = 1;

function slideshow(){
ImgPreload = setInterval("change()", 1000);
}

function change(){
  document.images.pic.src = pix[i];
  i = i + 1;
  if (i > (pix.length - 1)) {i = 0; counter = counter + 1;}
  if (counter > 2) {clearInterval(ImgPreload);}
}
</script>

While this is not specifically what you are doing it is a good resource for a similar circumstance. Without, the clearInterval and a trigger your memory usages is automatically cached as a basic for webkit...it is trying to help you by loading relevant loads off that script as cache elements or something...

:)

link|improve this answer
Thanks, but the interval is running in the worker. Therefore I cannot access it from the hosting page. Also, since the worker is terminated and restarted when refreshing its interval (should be) implicitly terminated as well. – Mårten Wikström Sep 30 '11 at 6:27
feedback

Your Answer

 
or
required, but never shown

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