Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large, complex page that relies heavily on knockout.js. Performance is starting to become an issue but examining the call stack and trying to find the bottlenecks is a real challenge.

I noticed in another question ( Knockout.js -- understanding foreach and with ) that the accepted answer has the comment:

...and I suggest not using with where high performance is necessary because of the overhead...

Assuming the statement is true, this is really useful stuff to know and I have not found a source for such performance tips.

Therefore, my question is:

Are there general guidelines / top tips that I can apply to help the performance of my application before I get deep into classic performance tuning.

share|improve this question
I have a number of tips to share, but no time. Will post tonight. – RP Niemeyer Mar 29 '12 at 14:47
@RPNiemeyer - Thanks Ryan. That would be great. – Mark Robinson Mar 29 '12 at 15:07
1  
I don't have any general tips, but you might want to try the beta of 2.1 as the comments suggest there have been some general performance improvements. – ShaneBlake Mar 29 '12 at 15:50

3 Answers

up vote 18 down vote accepted

I think that it would be too much to layout the tips that I have in mind in one answer.

I started a series of blog posts on this topic. The first post is here.

This post describes a bit how if/with work (copies the children as its template and re-renders using the template whenever the binding is triggered) and explains how these bindings can be cause re-renders much more often than expected.

I will update this answer with future posts.

share|improve this answer
3  
Excellent blog post, Ryan. Implementing the suggestions around 'if' bindings rerendering has already made a measurable difference to my application. Looking forward to future blog posts on this issue. – Mark Robinson Mar 30 '12 at 11:31
Here and here are the latest posts on this topic. – Sherlock Aug 27 '12 at 12:17

One of the biggest gotchas I've found (and not seen discussed elsewhere) is that Knockout re-evaluates every binding on an element whenever any binding on the element changes.

That's ordinarily not a big deal, but for bindings that tend to be expensive (e.g. template), it can create significant performance problems.

Attach bindings that render content/children (template, foreach, etc.) to a virtual element (using the containerless control flow syntax) if they're not the only binding on the element.

share|improve this answer
This jsperf test shows how expensive the indirection of a template binding is. jsperf.com/knockout-template-binding-performance/2 – Michael 14 hours ago

Since the Knockout binding/subscriber system can take a lot of time to process (if you have too much data and bindings), you should take in consideration your UI design. For example, if you by default don't display all your data, lets say you have a Master/Detail structure populated on demand, clicking on a button, etc, you can take advantage from the "if" or any conditional binding. This way, Knockout will only process that UI part and its bindings if the condition evaluates "true". You can check in more detail here

share|improve this answer
Clearly you haven't read the blog from Ryan, he states specifically to be careful with these control bindings. – Anzeo Sep 5 '12 at 15:23
My post talks about different aspects of the same binding. I don't understand why the down vote. – FHeNuS Sep 27 '12 at 23:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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