⚡️ Speed up method LuaList.merge by 7%#93
Open
codeflash-ai[bot] wants to merge 1 commit intofix/add-mockito-test-dependencyfrom
Open
⚡️ Speed up method LuaList.merge by 7%#93codeflash-ai[bot] wants to merge 1 commit intofix/add-mockito-test-dependencyfrom
LuaList.merge by 7%#93codeflash-ai[bot] wants to merge 1 commit intofix/add-mockito-test-dependencyfrom
Conversation
The merge implementation now pre-allocates the destination ArrayList to size1+size2 and only calls addAll when a source list is non-empty, rather than constructing from the first list and then appending the second. This eliminates the extra internal array growth and element copying that occur when the backing array must be resized during the second addAll, yielding a measured 6% wall-time improvement (127 µs → 118 µs) with larger reductions on big inputs in the test suite. The trade-off is a tiny amount of extra work to read the two sizes and an immediate larger short-lived allocation when both lists are non-empty, which is a reasonable memory/performance trade for fewer reallocations and lower CPU overhead.
misrasaurabh1
approved these changes
Mar 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📄 7% (0.07x) speedup for
LuaList.mergeinclient/src/com/aerospike/client/lua/LuaList.java⏱️ Runtime :
127 microseconds→118 microseconds(best of159runs)📝 Explanation and details
The merge implementation now pre-allocates the destination ArrayList to size1+size2 and only calls addAll when a source list is non-empty, rather than constructing from the first list and then appending the second. This eliminates the extra internal array growth and element copying that occur when the backing array must be resized during the second addAll, yielding a measured 6% wall-time improvement (127 µs → 118 µs) with larger reductions on big inputs in the test suite. The trade-off is a tiny amount of extra work to read the two sizes and an immediate larger short-lived allocation when both lists are non-empty, which is a reasonable memory/performance trade for fewer reallocations and lower CPU overhead.
✅ Correctness verification report:
🌀 Click to see Generated Regression Tests
To edit these changes
git checkout codeflash/optimize-LuaList.merge-mmbj1z1yand push.