Hello, I'm trying to get a list of top terms for a field called "Tags".
One way to do this would be to query all data *:* and then facet by the Tags column: /solr/collection/admin/select?q=*:*&rows=0&facet=true&facet.field=Tags I've noticed another way to do this is using the luke interface like this: /solr/collection/admin/luke?fl=Tags&numTerms=20 One problem I see with the luke interface is that its inside the /admin/ path, which to me means that my users shouldn't be able to access it. Whats the most SOLRy way to do this? Thanks! -D