0

solr have a admin console like

http://localhost:8982/solr/admin/schema.jsp

which provides some schema fields data like top terms and freq for specific field.

I am using sunspot, and how to query data like this? like TOP 10 terms

Ryan Wong
  • 120
  • 1
  • 7

2 Answers2

2

Not sure for Sunspot but check for Solr TermsComponent which will allow you to retrieve the top terms with the frequency from a field.

Jayendra
  • 52,349
  • 4
  • 80
  • 90
0

while, my current solution is using Luke query some XML data and parse it by hand http://wiki.apache.org/solr/LukeRequestHandler

for anyone who is interesting.

Ryan Wong
  • 120
  • 1
  • 7