jpountz commented on issue #12826: URL: https://github.com/apache/lucene/issues/12826#issuecomment-1823968702
Thanks for testing, I was wondering about the virtual call too. In theory, group-varint works well because you can start decoding the next group before being fully done with the current one, but this only works if reading a group gets inlined so that the compiler can figure it out. The annoying part is that reading a sequence of vints would ideally go into an int[] but in our case we need a long[] because this is what postings are using (for different reasons, it helps them better take advantage of auto vectorization). -- 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: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org