0 votes
in Angular by
How Can We Decrease Digest Cycle Time?

1 Answer

0 votes
by

To decrease digest cycle time, you need to decrease the number of watchers. Below are some best practices you can follow to decrease number of watchers:

  • Remove unnecessary watchers.
  • Use one time Angular binding. Especially if you see ng-repeat loop apply one time binding.
  • Work in batches.
  • Cache DOM.
  • Use Web worker.
...