perf: optimize getInbox usage and shared pointer handling in loops #3150
+60
−28
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This addresses performance issues by optimizing the use of shared pointers and removing redundant calls. Specifically, the
getInbox
call was removed from extensive loops to prevent unnecessary reference count increments, which were causing CPU overhead. Additionally, shared pointers used in recursive or iteration-heavy functions, such as theContainerIterator
, were changed toconst&
where applicable, reducing the impact of reference counting on performance.Fixes this perf report: 23_11_20_18.txt
Behaviour
Actual
When iterating over container items or processing inbox elements in loops, excessive reference count updates for shared pointers caused significant CPU strain, leading to reduced performance under heavy load.
Expected
The changes reduce the number of reference count updates and improve performance, particularly in recursive contexts and large loops involving container operations.
Type of change
How Has This Been Tested
The changes were tested by running performance benchmarks during typical server operations to ensure that the CPU usage was reduced in scenarios involving container iterations and recursive pointer accesses.
Checklist