Hi John,

First of all, perhaps it's a good idea to debounce 
<https://docs.angularjs.org/api/ng/directive/ngModelOptions>the user input. 
this will reduce the number of times a digest cycle will kick in.
If you have thos other controllers active, and if you have watched in 
there, there isn't much that can be done about that.
However, I suspect that most of the watches you are talking about are in 
the template.
Am I right if you use ng-Show to show/hide parts of your apps interface? 
Replace those with ngIf if possible, and
the parts that are not shown, will be taken out of the DOM. at witch point 
they will stop watching your model.

Does this help a bit?

Regards
Sander

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to