Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minimize CPs #691

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Minimize CPs #691

wants to merge 3 commits into from

Conversation

mixonic
Copy link
Member

@mixonic mixonic commented May 22, 2019

For ember-tr and ember-td minimize CPs. This minimizes the watchers that need to be maintained.

@mixonic mixonic force-pushed the mixonic/minimize-cps branch 2 times, most recently from c064528 to 92d3fed Compare May 23, 2019 12:55
@mixonic
Copy link
Member Author

mixonic commented May 23, 2019

I've had success with these changes in a downstream app. In a production build running:

console.time('scroll'); $('.ember-table')[0].scrollTop = 4000; window.requestAnimationFrame(() => window.requestAnimationFrame(() => console.timeEnd('scroll')));

The timing was ~750ms. After these changes it was ~100ms faster. This is not a very scientific number :-p

The idea is that most of the time spent during render is not in the rendering engine, but instead setup/teardown of dependencies. By creating less CPs we can minimize the necessary book-keeping. A bunch of work moves into the template layer, but that is already faster in old versions of Ember and improves throughout Ember's releases.

Most of the work is in `_sync` Screen Shot 2019-05-23 at 9 08 25 AM

@johanrd johanrd mentioned this pull request Nov 18, 2021
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant