Re: Right Way to Read vectors from Index

2024-02-09 Thread Michael Wechner
Can you describe your use case in more detail (beyond having to read the vectors)? Thanks Michael Am 09.02.24 um 12:28 schrieb Uthra: Hi, Our project uses Lucene 9_7_0 and we have a requirement of frequent vector read operation from the Index for a set of documents. We tried two app

Right Way to Read vectors from Index

2024-02-09 Thread Uthra
Hi, Our project uses Lucene 9_7_0 and we have a requirement of frequent vector read operation from the Index for a set of documents. We tried two approaches 1. Index vector as Stored field and retrieve whenever needed using StoredFields APIs. 2. Using LeafReader’s API to read vector. He