Re: How to replace deprecated document(i)

2023-09-24 Thread Michael Wechner
Hi Shubham Great, thank you very much! Michael Am 25.09.23 um 02:14 schrieb Shubham Chaudhary: Hi Michael, You could replace this with *indexReader.storedFields().document(scoreDoc.doc)* Docs - https://lucene.apache.org/core/9_7_0/core/org/apache/lucene/index/StoredFields.html#document(int)

Re: How to replace deprecated document(i)

2023-09-24 Thread Shubham Chaudhary
Hi Michael, You could replace this with *indexReader.storedFields().document(scoreDoc.doc)* Docs - https://lucene.apache.org/core/9_7_0/core/org/apache/lucene/index/StoredFields.html#document(int) - Shubham On Mon, Sep 25, 2023 at 1:59 AM Michael Wechner wrote: > Hi > > I recently noctived th

How to replace deprecated document(i)

2023-09-24 Thread Michael Wechner
Hi I recently noctived that IndexReader.document(int) is deprecated, whereas my code is currently TopDocs topDocs = searcher.search(query, k); for (ScoreDoc scoreDoc : topDocs.scoreDocs) {     Document doc = indexReader.document(scoreDoc.doc); } How do I best replace document(int)? Thanks M