Fetch top terms with sunspot

100 Views Asked by At

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

2

There are 2 best solutions below

0
On BEST ANSWER

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

0
On

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.