Re: Skipping caches on a /select

2013-10-17 Thread Bill Bell
But global on a qt would be awesome !!! Bill Bell Sent from mobile > On Oct 17, 2013, at 2:43 PM, Yonik Seeley wrote: > > There isn't a global "cache=false"... it's a local param that can be > applied to any "fq" or "q" parameter independently. > > -Yonik > > >> On Thu, Oct 17, 2013 at 4:3

Re: Skipping caches on a /select

2013-10-17 Thread Tim Vaillancourt
Awesome, this make a lot of sense now. Thanks a lot guys. Currently the only mention of this setting in the docs is under filterQuery on the "SolrCaching" page as: " Solr3.4 Adding the localParam flag of {!cache=false} to a query will prevent the filterCach

Re: Skipping caches on a /select

2013-10-17 Thread Chris Hostetter
: Does "cache=false" apply to all caches? The docs make it sound like it is for : filterCache only, but I could be misunderstanding. it's per *query* -- not per cache, or per request... /select?q={!cache=true}foo&fq={!cache=false}bar&fq={!cache=true}baz ...should cause 1 lookup/insert in the

Re: Skipping caches on a /select

2013-10-17 Thread Yonik Seeley
There isn't a global "cache=false"... it's a local param that can be applied to any "fq" or "q" parameter independently. -Yonik On Thu, Oct 17, 2013 at 4:39 PM, Tim Vaillancourt wrote: > Thanks Yonik, > > Does "cache=false" apply to all caches? The docs make it sound like it is > for filterCac

Re: Skipping caches on a /select

2013-10-17 Thread Tim Vaillancourt
Thanks Yonik, Does "cache=false" apply to all caches? The docs make it sound like it is for filterCache only, but I could be misunderstanding. When I force a commit and perform a /select a query many times with "cache=false", I notice my query gets cached still, my guess is in the queryResul

Re: Skipping caches on a /select

2013-10-16 Thread Yonik Seeley
On Wed, Oct 16, 2013 at 6:18 PM, Tim Vaillancourt wrote: > I am debugging some /select queries on my Solr tier and would like to see > if there is a way to tell Solr to skip the caches on a given /select query > if it happens to ALREADY be in the cache. Live queries are being inserted > and read f

Skipping caches on a /select

2013-10-16 Thread Tim Vaillancourt
Hey guys, I am debugging some /select queries on my Solr tier and would like to see if there is a way to tell Solr to skip the caches on a given /select query if it happens to ALREADY be in the cache. Live queries are being inserted and read from the caches, but I want my debug queries to bypass t