RamakrishnaChilaka opened a new pull request, #15170:
URL: https://github.com/apache/lucene/pull/15170

   This PR introduces a new `writeInts(int[], int, int)` bulk method to the 
DataOutput API and optimizes some of the codec operations (postings compression 
& Jump table writes) to use bulk integer writes instead of individual 
writeInt() calls.
   
   #### Changes:
   - Add `writeInts(int[], int, int)` method to DataOutput base class and 
default method which calls `writeInt` in a loop.
   - Implement writeInts in `ByteArrayDataOutput`, `ByteBuffersDataOutput`, and 
`ByteBuffersIndexOutput`
   - Optimize ForUtil postings compression to use bulk writeInts instead of 
individual calls
   - Optimize IndexedDISI jump table writes to use bulk writeInts for better 
performance
   
   
   


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to