Re: Disable coord

2009-11-23 Thread Chris Hostetter
: Thanks for your reply. Nested boolean queries is a valid concern. I also : realized that isCoordDisabled needs to be considered in : BooleanQuery.hashCode so that a query with coord=false will have a different : cache key in Solr. Hmmm... you're right, BooleanQuery.hashCode doesn't consider d

Re: Disable coord

2009-11-18 Thread Guangwei Yuan
Thanks for your reply. Nested boolean queries is a valid concern. I also realized that isCoordDisabled needs to be considered in BooleanQuery.hashCode so that a query with coord=false will have a different cache key in Solr. On Thu, Nov 12, 2009 at 12:12 PM, Chris Hostetter wrote: > > : I want

Re: Disable coord

2009-11-12 Thread Chris Hostetter
: I want to disable coord for certain queries. For example, if I pass a URL : parameter like "disableCoord" to Solr, the BooleanQuery generated will have : coord disabled. If it's not currently supported, what would be a good way : to implement it? in order to have something like this on a per