You can always expose the admin handler on non-admin URL. That's all just definitions in solrconfig.xml.
Personal website: http://www.outerthoughts.com/ LinkedIn: http://www.linkedin.com/in/alexandrerafalovitch - Time is the quality of nature that keeps events from happening all at once. Lately, it doesn't seem to be working. (Anonymous - via GTD book) On Wed, Nov 27, 2013 at 11:22 PM, Dave Seltzer <dselt...@tveyes.com> wrote: > 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 >