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

[engine] Minor perf: use _kwargs in Struct._key #4107

Conversation

baroquebobcat
Copy link
Contributor

Problem

Struct._key is called ~460k times running list in the pants repo. The @Property machinery invoked for self.address ends up taking ~3-5% of time.

Solution

Inline the _kwargs.get call for address in this specific case.

Another more invasive solution would be to set dict to _kwargs, but that would have other effects that we might not want.

Problem
-------
Struct._key is called ~460k times running list in the pants repo. The @Property machinery invoked for self.address ends up taking ~3-5% of time.

Solution
--------
Inline the _kwargs.get call for address in this specific case.

Another more invasive solution would be to set __dict__ to _kwargs, but that would have other effects that we might not want.
@stuhood stuhood closed this Jan 16, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants