You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key benchmark cannot be fully implemented (see krausest/js-framework-benchmark#694). Our keyed VDOM implementation recreates one of the swapped element. The reason for this choice is that the browser still recalculates the element when it is moved inside the DOM.
Possible solutions:
Keep our implementation as is and add a note about this to the benchmark.
Postpone the removal of elements and reuse them in a new location if needed.
The text was updated successfully, but these errors were encountered:
When I was linting non-keyed implementation by benchmark's linter, it said that Seed behavior isn't strictly non-keyed. So the results aren't 100% comparable because each framework uses different algorithms.
So.. if you think VDOM modification will make it better and helps to improve user apps - I'm ok with it. If we want to change VDOM to satisfy this benchmark, we shouldn't do it.
The key benchmark cannot be fully implemented (see krausest/js-framework-benchmark#694). Our keyed VDOM implementation recreates one of the swapped element. The reason for this choice is that the browser still recalculates the element when it is moved inside the DOM.
Possible solutions:
The text was updated successfully, but these errors were encountered: