|
|
|
|
|
by acdha
873 days ago
|
|
> On most of UI changes nothing stops React to update only local portions of the tree - elements that have their state changed. In practice, it still re-renders a lot. It’s easy to get a significant performance increase by not using React (usually at least one order of magnitude) - browsers have improved a lot and what looked like an optimization for IE6 is largely overhead now. |
|
Neither framework will fix programmer's errors.
This
will always be slower than this: N transactions versus 1 transaction.I mean that compiling separate N "small" DOM access calls is not always faster than one integral update.