Re: edismax and untokenized field

2012-06-12 Thread Afroz Ahmad
In the example above your schema is applying the tokenizers and filter only during index time. For your query terms to also pass through the same pipeline you need to modify the field type and add a section. I believe this should fix your problem. Thanks Afroz :

Re: edismax and untokenized field

2012-06-11 Thread Vijay Ramachandran
Thank you for your reply. Sending this as a phrase query does change the results as expected. On Mon, Jun 11, 2012 at 4:39 PM, Tanguy Moal wrote: > I think you have to issue a phrase query in such a case because otherwise > each "token" is searched independently in the merchant field : the query

Re: edismax and untokenized field

2012-06-11 Thread Tanguy Moal
Hello, I think you have to issue a phrase query in such a case because otherwise each "token" is searched independently in the merchant field : the query parser splits the query on spaces! Check the difference between debug outputs when you search for "Jones New York", you'd get what you expected.