I'm working on a project for which I want to build a tag cloud by reading a Lucene index and pruning it down. I didn't set up the Lucene engine, it was someone else in the team, now I just want to read its index. Do you how to do that in Java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
what you need to look for is how to use IndexReader class, the .terms() method will give you back all the terms in the index. |
|||||
|
|
Not sure what you mean by "reading" an Index:
If you want to view the contents of the index, you can use Luke |
|||||
|
|
You do it like this -
|
|||
|
|
|
Just do this:
|
|||
|
|