Re: SOLR HttpCache Qtime

2011-10-12 Thread Lord Khan Han
Hi , sorry for delay.. I got cold and still tears in my eyes .. These viruses getting stronger each day... what I have done is in solrconfig.xml : true 20 1000 static firstSearcher warming in solrconfig.xml

Re: SOLR HttpCache Qtime

2011-10-10 Thread Tor Henning Ueland
On Sat, Oct 1, 2011 at 11:55 PM, Lord Khan Han wrote: > Is there anyway to get correct Qtime when we use http caching ? I think Solr > caching also the Qtime so giving the the same Qtime in response what ever > takes it to finish ..  How I can set Qtime correcly from solr when I use > http caching

Re: SOLR HttpCache Qtime

2011-10-06 Thread Otis Gospodnetic
matext.com/ :: Solr - Lucene - Nutch Lucene ecosystem search :: http://search-lucene.com/ - Original Message - > From: Lord Khan Han > To: solr-user@lucene.apache.org > Cc: > Sent: Saturday, October 1, 2011 5:55 PM > Subject: SOLR HttpCache Qtime > > Hi, > > Is t

Re: SOLR HttpCache Qtime

2011-10-04 Thread Lance Norskog
Solr supports having the browser cache the results. If your client code supports this caching, or your code goes through an HTTP cacher like Squid, it could return a cached page for a query. Is this what you mean? On Tue, Oct 4, 2011 at 4:55 PM, Nicholas Chase wrote: > Seems to me what you're as

Re: SOLR HttpCache Qtime

2011-10-04 Thread Nicholas Chase
Seems to me what you're asking is how to have an accurate query time when you're getting a response that's been cached by an HTTP cache. This might be from the browser, or from a proxy, or from something else, but it's not from Solr. The reason that the QTime doesn't change is because it's th

Re: SOLR HttpCache Qtime

2011-10-04 Thread Erick Erickson
Still doesn't make sense to me. There is no Solr HTTP cache that I know of. There is a queryResultCache. There is a filterCache. There is a documentCache. There's may even be custom cache implementations. There's a fieldValueCache. There's no http cache internal to Solr as far as I can tell. If yo

Re: SOLR HttpCache Qtime

2011-10-04 Thread Lord Khan Han
I just want to be sure.. because its solr internal HTTP cache.. not an outside httpcacher On Tue, Oct 4, 2011 at 5:39 PM, Erick Erickson wrote: > But if the HTTP cache is what's returning the value, > Solr never sees anything at all, right? So Solr > doesn't have a chance to do anything here. >

Re: SOLR HttpCache Qtime

2011-10-04 Thread Erick Erickson
But if the HTTP cache is what's returning the value, Solr never sees anything at all, right? So Solr doesn't have a chance to do anything here. Best Erick On Tue, Oct 4, 2011 at 9:24 AM, Lord Khan Han wrote: > We are using this Qtime field and publishing in our front web. Even the > httpCache de

Re: SOLR HttpCache Qtime

2011-10-04 Thread Lord Khan Han
We are using this Qtime field and publishing in our front web. Even the httpCache decreasing the Qtime in reality, its still using the cached old Qtime value . We can use our internal qtime instead of Solr's but I just wonder is there any way to say Solr if its coming httpCache re-calculate the Qt

Re: SOLR HttpCache Qtime

2011-10-03 Thread Erick Erickson
Why do you want to? QTime is the time Solr spends searching. The cached value will, indeed, be from the query that filled in the HTTP cache. But what are you doing with that information that you want to "correct" it? That said, I have no clue how you'd attempt to do this. Best Erick On Sat, Oct

SOLR HttpCache Qtime

2011-10-01 Thread Lord Khan Han
Hi, Is there anyway to get correct Qtime when we use http caching ? I think Solr caching also the Qtime so giving the the same Qtime in response what ever takes it to finish .. How I can set Qtime correcly from solr when I use http caching On. thanks