I keep Process Explorer open and inspect the "Private Bytes" column of the firefox.exe process. After pressing the "Add" button in this simple jsfiddle: http://jsfiddle.net/uLkDP/5/ I experience that the private bytes taken by Firefox has increased about 50-100 MByte.

The execution time is also rather long when I compare it to implementations lacking dependency tracking: http://jsfiddle.net/uLkDP/6/

My question: Is poor performance inherent when using Knockout.js or am I doing something wrong?

link|improve this question

62% accept rate
feedback

2 Answers

Setting the memory issue aside for a moment, the majority of the time in your current example would be spent in the foreach option of the template binding. It does quite a bit of work to determine which items in the array were changed to determine how to efficiently add/remove elements from the DOM. In your case, this work is being done 500 times.

You can get better performance, by writing it like:

$("#btnAdd").click(function()
{
    var items = vm.Comments();
    for(var i = 0; i<500; i++) {
         items.push(i.toString());
    }

    vm.Comments.valueHasMutated();
});

This just pushes items to the underlying array without notifying any subscribers until the end (calling push on the observableArray will push the item to the underlying array and call valueHasMutated).

The memory usage on the original sample does seem unusually high. I think that there may be some possible optimizations in the foreach logic that could help, but that would/will take quite a bit more research.

link|improve this answer
This is a nice insight, but unfortunately doesn't help the memory issue. Nice blog BTW! – kahoon Jun 29 '11 at 7:29
I hope to look into this myself at some point. It does help memory though if you push multiple items in the way that I showed above rather than one by one. – RP Niemeyer Jun 29 '11 at 12:34
feedback

RP is correct. have a look: http://jsfiddle.net/uLkDP/32/

Another and very similar approach is:

$("#btnAdd").click(function()
{
    var a = ["a", "b"];
    for(var i = 0; i<500; i++)
        a.push(i);

    vm.Comments(a);
});

​ a running example: http://jsfiddle.net/uLkDP/30/

Oh, One more thing, I used process hacker and monitored the memory usage in Google Chrome. RP approach added roughly 4MB, where the other one added roughly 8M. it does make sense as the second approach uses two arrays.

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.