don't use ng-include in ng-repeat, prefill the template cache
Workflow
“Performance tuning – set expectations, measure, tune, and repeat” – {1}
Have a problem (no premature optimizations)
Set time/ budget limits
Measure correctly
Find main bottle necks
Fix bottlenecks one by one (constantly measure and evaluate new state)
Wrap up
AngularJS detects model changes by dirty checking. Within the $digest cycle a previous stored value is compared to the actual model value. Process is repeated until models are stable
One: Don't watch for invisible (ng-if > ng-show)
Two: Avoid complex watch-expressions
Three: Ensure DOM updtes are batched
Workflow: detect problem, set expectations, measure, fix, repeat