Re: How can Most Popular Search be implemented in Solr?

2016-05-27 Thread Alexandre Rafalovitch
A think to watch out for is also that some of the parameters are defined Solr-side in the request handler. So, a server-level log will not capture all the parameters. Only something that extracts it from Solr after request handler defaults/overrides are applied. This may not matter for just keywor

Re: How can Most Popular Search be implemented in Solr?

2016-05-27 Thread Ahmet Arslan
Hi, Solr does not explicitly save incoming/maintain queries. * Some people save queries at the UI side. * Some folks enable Solr logging and then extract useful query, numFound, QTime, etc information from logs: http://soleami.com * Others identify searches that return zero documents (missing con

Re: How can Most Popular Search be implemented in Solr?

2016-05-27 Thread Shawn Heisey
On 5/26/2016 11:49 PM, Syedabbasmehdi Rizvi wrote: > I want to implement Most Popular search in Solr. Is there any OOTB > functionality in Solr that can achieve this? > I have had a good look in > StatsComponent as well as > TermsComponent

How can Most Popular Search be implemented in Solr?

2016-05-26 Thread Syedabbasmehdi Rizvi
Hi, This is my first time asking the question. I am facing some problems in Solr. Could you please help me out. Below is my question: I want to implement Most Popular search in Solr. Is there any OOTB functionality in Solr that can achieve this? I have had a good look in StatsComponent

How can Most Popular Search be implemented in Solr?

2016-05-26 Thread Syedabbasmehdi Rizvi
Hi, Below is my question: I want to implement Most Popular search in Solr. Is there any OOTB functionality in Solr that can achieve this? I have had a good look in StatsComponent as well as TermsComponent