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.