I am wondering is there a way to get all tokens from particular record in Lucene/Solr index?
Thank you.
|
I am wondering is there a way to get all tokens from particular record in Lucene/Solr index? Thank you. |
|||||||
|
|
You can use IndexReader.terms() to get an enumeration of all terms that occur in the inverted index. This method returns a TermEnum. |
|||
|