Re: SolrJ + HTTP caching

2008-10-15 Thread Norberto Meijome
On Wed, 15 Oct 2008 11:11:07 -0700 Matthew Runo <[EMAIL PROTECTED]> wrote: > We've been using Varnish (http://varnish.projects.linpro.no/) in front > of our Solr servers, and have been seeing about a 70% hit rate for the > queries. We're using SolrJ, and have seen no bad effects of the cache.

Re: SolrJ + HTTP caching

2008-10-15 Thread Chris Hostetter
: with the index being a few minutes stale as the TTL expires on the cache. I : don't think solr has a way to, at query time, change the cache control : headers. SolrJ lets the HttpClient instance handle all network connections, so specify whatever caching/proxy info you want to it, and then pass

Re: SolrJ + HTTP caching

2008-10-15 Thread Matthew Runo
We've been using Varnish (http://varnish.projects.linpro.no/) in front of our Solr servers, and have been seeing about a 70% hit rate for the queries. We're using SolrJ, and have seen no bad effects of the cache. That said, we're just caching everything for a few minutes. We don't pick and

SolrJ + HTTP caching

2008-10-15 Thread Jon Baer
Hi, What is the proper behavior suppose to be between SolrJ and caching? Im proxying through a framework and wondering if it is possible to turn on / turn off caching programatically depending on the type of query (or if this will have no effect whatsoever) ... since SolrJ uses Apache HT