On Mon, Mar 23, 2009 at 5:00 PM, Jonathan Haddad
<jonathan.had...@gmail.com> wrote:
> Using a filter query, is it possible to specify a list of values that
> a field must satisfy one of?

It's not currently possible to specify them in separate filters (fq
params)... one must combine them into a single filter query.

fq=myfield:(A B C D E F)

This assumes that the default lucene query operator is "OR"... if
that's not the case then use

fq=myfield:(A OR B OR C OR D OR E OR F)


-Yonik
http://www.lucidimagination.com

Reply via email to