-
-
Notifications
You must be signed in to change notification settings - Fork 108
perf: use vlb in FilterScopedAttributes and defer creation.
#4304
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
Conversation
SummaryPerformance optimization that uses ValueListBuilder and defers Dictionary allocation in ScopedAttributeFilter, saving ~2 MB. Critical IssuesNone found ✅ The changes look good:
SuggestionsMinor: Stack allocation size Note: OrderBy allocation Verdict✅ APPROVE - Solid performance improvement with no critical issues |
Small improvement, saves around 2 MB in
ScopedAttributeFilter.FilterScopedAttributesby deferringDictionarycreation and usingValueListBuilderBefore
After