Knockout.js pro tips - working with observable arrays | StrathWebStrathWeb:
Imagine you are inserting 100 items into an observable array. More often than not, you donโ€™t need each subscriber to recalculate itโ€™s dependencies 100 items, and UI to be reacting 100 times. Instead, once should just fine.

To do this, you can always modify the underlying array instead of the observableArray directly, since observableArray concept is just a function wrapper around the traditional JS array. After you are done with the array manipulation, you can then notify all the subscribers that the array has changed its state.
...
In this example. we are using KO extensions to push all values received via XHR call into the underlying array, and then notifying the subscribers using valueHasMutated().

I think the valueHasMutated() function might be the key takehome there. Hello, faster.

Labels: ,