I have an app which calls web worker after the button click. The calculations are moved to worker to relieve UI and make it responsive to user actions while calculations are being made.
Everything goes okay and after about 0.8-1.5s the worker sends a response. In worker.onmessage i perform all the needed DOM actions. But after this GC appears and practically blocks the UI for 2 or more seconds depending on CPU. This is really confusing me, because UI blocking is what i want to prevent.
Here's the screenshot of timeline/memory console tab: http://i.imgur.com/zUoHa.jpg
As you can see GC events happen just after all DOM manipulations. Actually there's only one repaint event (DocumentFragment is used).
main js code:
var sortWorker = new Worker('js/contactsorter.js');
sortWorker.onmessage = function(e) {
var messages = [];
e.data.forEach(function(userDoc) {
var contactSection = _drawContact(userDoc);
messages.push(contactSection);
});
meta.append(messages); // this actually appends document fragment as a child
};
sortWorker.postMessage(postMessageData);
contactsorter.js (worker):
onmessage = function(e) {
var uid, output = [], usersStat = {};
// calculations...
postMessage(output);
close();
};
Is there any way to avoid these GC events in this place or not?
UPD: it seems to me that GC event(s) time depends on data amount that was sent to worker. UPD2: After shutdown and boot GC events happen only twice thus blocking UI for less than a second. Hm?