Suppose I have a list of elements that display with $scope.items using ng-repeat . This list is quite large and is regularly updated, but only individual items are updated at the same time, for example. 12 updates for item 2, then 2 updates for item 359, then 89 updates for item 1071, etc.
From what I understand, updating individual elements in the $scope.items list will cause AngularJS to rename the full list, even if most of the elements haven't changed at all. This seems pointless and can certainly be handled more efficiently. I could use tools like jquery and update the DOM myself, but this seems to spoil the AngularJS point a lot. Is there a way in AngularJS to update individual list items in the ng-repeat generated model?
source share