-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[apex] Add new rule: OperationWithHighCostInLoop #4677
[apex] Add new rule: OperationWithHighCostInLoop #4677
Conversation
@adangel should I create this rule also on a 6.XX version or the 7 is the only one used now ? |
Generated by 🚫 Danger |
Hi @adangel @rsoesemann, Just wanted to know if you could have a look on this PR ? Have a good day ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR!
I think we need a bit more test cases and improve the rule description a bit.
I think, the rule intention is logical IMHO - these method calls should always be used outside of the loop. However, I'm unsure about the real-world practical performance impact: The official apex documentation doesn't mention performance at all - and honestly, I would expect that e.g. Schema.getGlobalDescribes()
is cached by the apex implementation anyways.
Do you have any numbers for performance problems created by using these methods extensively (e.g. in a loop)?
Otherwise it would just be an unproven claim and this rule might be better suited for "Best Practices"?
...resources/net/sourceforge/pmd/lang/apex/rule/performance/xml/OperationWithHighCostInLoop.xml
Show resolved
Hide resolved
...resources/net/sourceforge/pmd/lang/apex/rule/performance/xml/OperationWithHighCostInLoop.xml
Outdated
Show resolved
Hide resolved
Hi @adangel, You're right, this is not very documented how the usage of this method in loop affects the performance. This thread mention the performances issues and provides measures on it. In fact, I had the idea of this rule while watching a demo of the Apex Guru (new functionality in Salesforce to provide insights on your implementation and identifying anti pattern usage) Using this method in loops will be identified as anti-pattern by Apex Guru, so the idea was to be able to identify it before it arrives on the prod environment. As far as I know I have no problems with tagging this rule in Best practices section instead of performance, you have the final word ! 😄 |
Co-authored-by: Andreas Dangel <[email protected]>
Co-authored-by: Andreas Dangel <[email protected]>
@tprouvot Thanks for the pointers to stackexchange. Then I guess, we keep it in performance. |
And improve test cases
Describe the PR
Methods Schema.getGlobalDescribe() or Schema.describeSObjects should be called once per an apex transaction and should never be called inside a loop.
Related issues
Ready?
./mvnw clean verify
passes (checked automatically by github actions)