Re: [MASSMAIL]Re: Trending functionality in Solr

2015-02-09 Thread S.L
nal Message - > From: "Shawn Heisey" > To: solr-user@lucene.apache.org > Sent: Sunday, February 8, 2015 11:03:33 AM > Subject: [MASSMAIL]Re: Trending functionality in Solr > > On 2/7/2015 9:26 PM, S.L wrote: > > Is there a way to implement the trending functiona

Re: Trending functionality in Solr

2015-02-09 Thread S.L
Folks, Thanks for this wealth of information , the consensus generally seems to be that one should be able to save the queries in Solr core (another one) and then times stamp it to do further analysis . I will try and implement the same . Siegfried, I looked at your JIRA issue which is impressiv

Re: Trending functionality in Solr

2015-02-09 Thread Rajesh Hazari
Hi folks, In the project that i am working now, we have used logstash to parse the log files and store the user queries back into a separate collection in solr and banana dashboard configure to view the usage. logstash: logstash.net/ banana : github.com/LucidWorks/banana *Rajesh.* On Mon, Feb

Re: Trending functionality in Solr

2015-02-09 Thread Alvaro Cabrerizo
Hi, In a project I'm working on, we adopted the same approach as the one commented by Jorge Luis (use a separate core and let the front-end send the query to solr to store it). Depending on the analysis you want to achieve it could be interesting to delete duplicates or not (have 1 solr document p

Re: Trending functionality in Solr

2015-02-09 Thread Siegfried Goeschl
Hi folks, I implemented something similar but never got around to contribute it - see https://issues.apache.org/jira/browse/SOLR-4056 The code was initially for SOLR3 but was recently ported to SOLR4 * capturing the most frequent search terms per core * supports ad-hoc queries * CSV export I

Re: [MASSMAIL]Re: Trending functionality in Solr

2015-02-08 Thread ralph tice
in mind that the considerations regarding volume of data that Shawn has > talked keeps being valid. > > Hope it helps, > > - Original Message - > From: "Shawn Heisey" > To: solr-user@lucene.apache.org > Sent: Sunday, February 8, 2015 11:03:33 AM > Subject: [MA

Re: [MASSMAIL]Re: Trending functionality in Solr

2015-02-08 Thread Jorge Luis Betancourt González
me of data that Shawn has talked keeps being valid. Hope it helps, - Original Message - From: "Shawn Heisey" To: solr-user@lucene.apache.org Sent: Sunday, February 8, 2015 11:03:33 AM Subject: [MASSMAIL]Re: Trending functionality in Solr On 2/7/2015 9:26 PM, S.L wrote: > Is

Re: Trending functionality in Solr

2015-02-08 Thread Shawn Heisey
On 2/7/2015 9:26 PM, S.L wrote: > Is there a way to implement the trending functionality using Solr , to give > the results using a query for say the most searched terms in the past hours > or so , if the most searched terms is not possible is it possible to at > least the get results for the last

Trending functionality in Solr

2015-02-08 Thread S.L
Folks, Is there a way to implement the trending functionality using Solr , to give the results using a query for say the most searched terms in the past hours or so , if the most searched terms is not possible is it possible to at least the get results for the last 100 terms? Thanks