-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Performance degradation in angular1.3 from angular1.2 #9609
Comments
We need to look into this more, but by not using jQuery you can get a significant perf boost. Angular 1.3 + jQuery 1: http://jsfiddle.net/7cjbpgjo/ |
@jbedard would you like to take a look a this one? |
I'm away for the next week, but currently stuck on a train so... From what I can tell it is mainly caused by jQuery2 Data being slower then jQuery1, caused by http://code.google.com/p/chromium/issues/detail?id=378607 but also from the use of Other things that seem to have slowed down (from a quick profiling in chrome):
|
@IgorMinar The test case at http://jsfiddle.net/j0yhnpxk/1/ doesn't work for at least two reasons. |
@mzgol http://jsfiddle.net/j0yhnpxk/3/ should work now |
It is usually a selling point for newer libraries to offer better performance. When it goes the other way round it is always frustrating. I hope Angular team will be able at least to bring the performance to the same level as 1.2. As for the problem described by barnash, his issue with the performance is more like around improper use of the input elements on the page. I just added my comment on that Stack Overflow issue, link for which he provided, explaining why having too many inputs on the same page is always a bad idea. |
Thanks for the answer @VitalyTomilov. |
Angular 1.4 seems to be faster: http://jsfiddle.net/5shyqe3m/ |
When trying to render a simple input element within an ng-repeat over an array:
Checkout these two js-fiddles:
Angular1.3.0
Angular1.2.26
These js-fiddles run the same example on two angularjs libraries.
The code measures how much time it takes for the digest loop to run when we're changing the array into a new array with 1, 10 and 30 elements.
There is about a 30% degradation when running the code with angular1.3. I ran it on Macbook Pro and Air, on Safari and Chrome.
This issue is related to this Stack Overflow issue
The text was updated successfully, but these errors were encountered: