Skip to content
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

Added Span Support to J2N.IO Buffers #132

Merged
merged 5 commits into from
Mar 31, 2025
Merged

Conversation

NightOwl888
Copy link
Owner

This adds basic support for spans on the Get() and Put() methods of the various buffers and adapters. The current implementation keeps the same calling order in the base classes (ByteBuffer, CharBuffer, etc) and each subclass overrides the implementation to provide a better optimized implementation. However, at this point the following methods are still reading one character at a time:

  1. CompareTo()
  2. Equals()
  3. GetHashCode()

These will be optimized in another PR along with optimizations to the big/little endian conversions and consolidation of repetitious code.

This was discussed in apache/lucenenet#1151

…ubstandard implementation. We cannot make these members abstract without a breaking change, so inheritors will need to override to optimize. Optimized Put() overload for each buffer that accepts the same type of buffer to use span overloads and to allocate using the stack or array pool to reduce GC overhead.
… either StringBuilder or StringBuilderCharSequence is used.
…r for string, and optimized CharBuffer.Wrap() implemenations.
@NightOwl888 NightOwl888 added is:enhancement New feature or request notes:new-feature A new feature labels Mar 28, 2025
@NightOwl888 NightOwl888 added this to the 2.2 milestone Mar 28, 2025
@NightOwl888 NightOwl888 requested a review from paulirwin March 28, 2025 15:33
Copy link
Collaborator

@paulirwin paulirwin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good! I left some minor comments that don't affect the logic. Looking forward to this improvement.

@NightOwl888 NightOwl888 merged commit 4009bf1 into main Mar 31, 2025
22 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
is:enhancement New feature or request notes:new-feature A new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants