-
Notifications
You must be signed in to change notification settings - Fork 27.4k
perf: improvements to $q #8300
Comments
Many of those failing tests have already been addressed, shouldn't take too long to have the rest of them cleaned up |
Well, using your first jsperf, the new angular implementation is about half the speed of prior angular, although it should have a much smaller memory footprint. Potential reasons include having to walk higher up the prototype chain to access common methods, Object.defineProperty being used to hide private methods and properties, and calling a promises base class. Might also be calling nextTick() more times than is really necessary. Interestingly, in FF Nightly (33.0a1 (2014-07-04)), angular's implementation beats bluebird, by quite a bit. I'm not sure if the benchmarks necessarily measure the right thing, though, because most likely what this is really measuring is our way of deferring to the next turn, which in angular means $rootScope.$evalAsync, which is not necessarily fast. |
Without using |
I think the performance gain is worth not using |
yeah I agree |
Plus we can save some bytes! |
I think this might have been a breaking change: #9933 |
This is a meta issue to track performance improvements to be made in
$q
for 1.3.0.The main problems to be solved within the scope of this issue:
Related issues:
There is a PR from @caitp which updates A+ compliance, adds ES6-like constructor API, and begins to experiment with porting bluebird to $q (but with many tests failing): #8067. I've suggested simplifying that PR to not include perf improvements.
Benchmarks:
The text was updated successfully, but these errors were encountered: