Platob opened a new issue, #38086:
URL: https://github.com/apache/arrow/issues/38086

   ### Describe the enhancement requested
   
   ArrowBuffer are currently based on ReadOnlyMemory
   
   To scale to larger data (with length > int32), arrow buffers will need to 
handle byte length > int32, maybe a struct with nested memory buffers
   
   ```
   public readonly partial struct ArrowBuffer : IEquatable<ArrowBuffer>, 
IDisposable
       {
           private readonly IMemoryOwner<byte> _memoryOwner;
           private readonly ReadOnlyMemory<byte> _memory;
   ```
   
   ### Component(s)
   
   C#


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to