Daily Perf Improver: Optimize string allocation in RemoveAdorners #1540
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.
Summary
This PR implements a performance optimization for the
RemoveAdornersmethod inTextConversions.fs, addressing the "string allocation patterns" goal from the performance improvement plan in issue #1534.Key improvements:
ToCharArray()and string construction when no adorners are presentTest Plan
Correctness Validation:
Performance Impact:
Approach and Implementation
Selected Performance Goal: Optimize string allocation patterns in parsers (Round 1 goal from #1534)
Todo List Completed:
Build and Test Commands Used:
Files Modified:
src/FSharp.Data.Runtime.Utilities/TextConversions.fs- Added fast-path optimization toRemoveAdornersmethodPerformance Optimization Details
Problem Identified:
The original
RemoveAdornersmethod always created a character array and filtered it, even when no adorners were present.Solution Implemented:
Performance Benefits:
Impact and Testing
Correctness Verification:
£50,$50,¤50, etc.)Performance Impact Areas:
Problems Found and Solved
Future Performance Work
This optimization enables:
Links
Web Searches Performed: None
MCP Function Calls: GitHub API calls for issue/PR management, file operations, build validation
Bash Commands: git operations, dotnet build/test/format commands