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

I have field string field 'tags' and I want to list all indexed values for 'tag' from Solr. Is there some introspection API in order to get hold of all values as JSON or XML?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can use TermsComponent.
The TermsComponent SearchComponent is a simple component that provides access to the indexed terms in a field and the number of documents that match each term.

This will return all the indexed terms. You can specify the field for which you want to retrieve the terms for.

http://localhost:8983/solr/terms?terms.fl=tag&terms.sort=index
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.