lucene icon indicating copy to clipboard operation
lucene copied to clipboard

Move vector search from IndexInput to RandomAccessInput

Open jpountz opened this issue 4 months ago • 0 comments

Description

Vector search currently loads vectors from disk by issuing a seek() followed by a readFloats(). We should instead:

  • Add an absolute readFloats() method to RandomAccessInput
  • Refactor the latest vector search file format to use RandomAccessInput instead of IndexInput to read vectors from disk.

jpountz avatar Oct 21 '24 07:10 jpountz