RE: Solr statistics of top searches and results returned

2009-05-26 Thread Plaatje, Patrick
trick -Original Message- From: rswart [mailto:rjsw...@gmail.com] Sent: dinsdag 26 mei 2009 16:42 To: solr-user@lucene.apache.org Subject: RE: Solr statistics of top searches and results returned If this is is not done in an async way wouldn't this have a serious performance impact?

RE: Solr statistics of top searches and results returned

2009-05-26 Thread rswart
> From: Umar Shah [mailto:u...@wisdomtap.com] > Sent: vrijdag 22 mei 2009 10:03 > To: solr-user@lucene.apache.org > Subject: Re: Solr statistics of top searches and results returned > > Hi, > > good feature to have, > maintaining top N would also require storing all the search quer

RE: Solr statistics of top searches and results returned

2009-05-25 Thread Plaatje, Patrick
, Patrick -Original Message- From: Umar Shah [mailto:u...@wisdomtap.com] Sent: vrijdag 22 mei 2009 10:03 To: solr-user@lucene.apache.org Subject: Re: Solr statistics of top searches and results returned Hi, good feature to have, maintaining top N would also require storing all the search queri

Re: Solr statistics of top searches and results returned

2009-05-22 Thread Umar Shah
Hi, good feature to have, maintaining top N would also require storing all the search queries done so far and keep updating (or atleast in some time window). having pluggable persistent storage for all time search queries would be great. tell me how can I help? -umar On Fri, May 22, 2009 at 12

Re: Solr statistics of top searches and results returned

2009-05-21 Thread Shalin Shekhar Mangar
On Fri, May 22, 2009 at 3:22 AM, Grant Ingersoll wrote: > > I think you will want some type of persistence mechanism otherwise you will > end up consuming a lot of resources keeping track of all the query strings, > unless I'm missing something. Either a Lucene index (Solr core) or the > option o

Re: Solr statistics of top searches and results returned

2009-05-21 Thread Grant Ingersoll
On May 20, 2009, at 4:33 AM, Shalin Shekhar Mangar wrote: On Wed, May 20, 2009 at 1:31 PM, Plaatje, Patrick < patrick.plaa...@getronics.com> wrote: At the moment Solr does not have such functionality. I have written a plugin for Solr though which uses a second Solr core to store/index the

RE: Solr statistics of top searches and results returned

2009-05-20 Thread Plaatje, Patrick
10:33 To: solr-user@lucene.apache.org Subject: Re: Solr statistics of top searches and results returned On Wed, May 20, 2009 at 1:31 PM, Plaatje, Patrick < patrick.plaa...@getronics.com> wrote: > > At the moment Solr does not have such functionality. I have written a > plugin f

Re: Solr statistics of top searches and results returned

2009-05-20 Thread Shalin Shekhar Mangar
On Wed, May 20, 2009 at 1:31 PM, Plaatje, Patrick < patrick.plaa...@getronics.com> wrote: > > At the moment Solr does not have such functionality. I have written a > plugin for Solr though which uses a second Solr core to store/index the > searches. If you're interested, send me an email and I'll

RE: Solr statistics of top searches and results returned

2009-05-20 Thread Plaatje, Patrick
- From: solrpowr [mailto:solrp...@hotmail.com] Sent: dinsdag 19 mei 2009 20:21 To: solr-user@lucene.apache.org Subject: Solr statistics of top searches and results returned Hi, Besides my own offline processing via logs, does solr have the functionality to give me statistics such as top searches

Re: Solr statistics of top searches and results returned

2009-05-19 Thread Shalin Shekhar Mangar
On Tue, May 19, 2009 at 11:50 PM, solrpowr wrote: > > Besides my own offline processing via logs, does solr have the > functionality > to give me statistics such as top searches, how many results were returned > on these searches, and/or how long it took to get these results on a

Solr statistics of top searches and results returned

2009-05-19 Thread solrpowr
Hi, Besides my own offline processing via logs, does solr have the functionality to give me statistics such as top searches, how many results were returned on these searches, and/or how long it took to get these results on average. Thanks, Bob -- View this message in context: http

Re: Top Searches

2006-12-11 Thread sangraal aiken
That's a great idea, thanks Yonik. -Sangraal On 12/11/06, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 12/11/06, sangraal aiken <[EMAIL PROTECTED]> wrote: > I'm looking into creating something to track the top 10 - 20 searches that > run through Solr for a given period. For offline processing,

Re: Top Searches

2006-12-11 Thread Yonik Seeley
On 12/11/06, sangraal aiken <[EMAIL PROTECTED]> wrote: I'm looking into creating something to track the top 10 - 20 searches that run through Solr for a given period. For offline processing, using log files is the simplest thing... the code remains separated, you can do historical processing if

Top Searches

2006-12-11 Thread sangraal aiken
I'm looking into creating something to track the top 10 - 20 searches that run through Solr for a given period. I could just create a counter object with an internal TreeMap or something that just keeps count of the various terms, but it could grow very large very fast and I'm not yet sure what i