> when using LukeRequestHandler...
> But how do I ensure I get *all* the terms in the index returned? Can I set
> "numTerms=ALL" or something like that?
I'm not sure about LukeRequestHandler, but you can do that with the
TermsComponent instead.
/terms?terms.fl=name&terms.limit=-1
Will give y
Hi
when using LukeRequestHandler, I can for example call:
http://localhost:8983/solr/admin/luke?fl=name&fl=cat
which will return data including the frequency of the top 10 search terms in
the specified fields.
I can also add a "numTerms" parameter to obtain more than the top 10.
But how do I e