Daily Perf Improver: Optimize string allocation in RemoveAdorners#1540
Merged
Daily Perf Improver: Optimize string allocation in RemoveAdorners#1540
Conversation
- Add fast path for strings without currency/percentage adorners - Avoids unnecessary ToCharArray() and string construction when no adorners present - Maintains existing behavior while reducing allocations for common case - All existing tests pass, ensuring correctness is preserved 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This was referenced Aug 30, 2025
6 tasks
dsyme
pushed a commit
that referenced
this pull request
Feb 21, 2026
Consolidate all changes since 6.5.0 into RELEASE_NOTES.md and mark 6.6.0 as released, opening 6.7.0 unreleased section. Changes included in 6.6.0: - Security fix: XXE vulnerability in XML parsing (#1596) - Bug fix: XML provider uses XDocument reader instead of ReadToEnd (#1527) - Performance: HTML parser CharList uses StringBuilder (~43% faster) (#1550) - Performance: JSON string serialization bulk writes (#1562) - Performance: RemoveAdorners fast-path for adorner-free strings (#1540) - Feature: HTML HIDE_REPRESENTATION compile-time opt-in (#1499) - Documentation: Fix links (#1597) - Tests: Expanded coverage across all modules Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
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