Re: WordDelimiterFilter misunderstanding

2009-08-20 Thread Yonik Seeley
This is unfortunately outside the scope of what filters can currently do at query time. This is why the example schema has WordDelimiterFilter only producing subwords at query time (not catenating them). -Yonik http://www.lucidimagination.com On Thu, Aug 20, 2009 at 5:29 PM, jOhn wrote: > I've

WordDelimiterFilter misunderstanding

2009-08-20 Thread jOhn
I've misunderstood WordDelimiterFilter. You might think that catenateAll="1" would append the full phrase (sans delimiters) as an OR against the query. So "jOkersWild" would produce: "j (okers wild)" OR "jokerswild" But you thought wrong. Its actually: "j (okers wild jokerswild)" Which is co