Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need the list of all search keyword(term) i.e. indexed in lucene index. I googled for it. but, i didn't get the solution. Is it possible to get the list of all search term?

share|improve this question

1 Answer

up vote 6 down vote accepted

You probably need the function IndexReader.terms() that gives you an enumeration of all the terms. I highly recommend using the Luke interactive Lucene front-end for exploring Lucene indexes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.