Re: Dismax + spatial constraints

2011-06-23 Thread kaiserwaseem
, 1000, 1000)}foo:bar&... but in vain, any help -- View this message in context: http://lucene.472066.n3.nabble.com/Dismax-spatial-constraints-tp2979214p3099490.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Dismax + spatial constraints

2011-05-24 Thread Smiley, David W.
Yes. "fq" (filter queries) are independent of the user's query in "q". On May 24, 2011, at 10:58 AM, Jamie Johnson wrote: > ok, so anything that goes in q would then be used for dismax but anything > else could go into fq (or multiple fqs) to apply different criteria in > addition then correct? >

Re: Dismax + spatial constraints

2011-05-24 Thread Jamie Johnson
ok, so anything that goes in q would then be used for dismax but anything else could go into fq (or multiple fqs) to apply different criteria in addition then correct? On Tue, May 24, 2011 at 9:43 AM, Smiley, David W. wrote: > Hi Jamie. > > You can definitely use dismax & geospatial; these are u

Re: Dismax + spatial constraints

2011-05-24 Thread Smiley, David W.
Hi Jamie. You can definitely use dismax & geospatial; these are unrelated. Use defType=dismax to get dismax and then use an appropriate geospatial filter like fq={!bbox}&sfield=store&pt=45.15,-93.85&d=5 For temporal based constraints, add a temporal filter query: fq=timestamp:[NOW-1MONTH TO N

Dismax + spatial constraints

2011-05-24 Thread Jamie Johnson
Is there a way to use dismax and spatial constraints? I haven't seen how to do this in the docs and only have seen a handful of questions on it. I have the same question for temporal based constraints. What would a solrconfig for this look like?