On 12 Nov 2010, at 01:46, Ahmet Arslan <iori...@yahoo.com> wrote: >> This setup now makes troubles regarding StopWords, here's >> an example: >> >> Let's say the index contains 2 Strings: "Mr Martin >> Scorsese" and "Martin Scorsese". "Mr" is in the stopword >> list. >> >> Query: edgytext:Mr Scorsese OR edgytext2:Mr Scorsese^2.0 >> >> This way, the only result i get is "Mr Martin Scorsese", >> because the strict field edgytext2 is boosted by 2.0. >> >> Any idea why in this case "Martin Scorsese" is not in the >> result at all? > > Did you run your query without using () and "" operators? If yes can you try > this? > &q=edgytext:(Mr Scorsese) OR edgytext2:"Mr Scorsese"^2.0 > > If no can you paste output of &debugQuery=on > > >
This would still not deal with the problem of removing stop words from the indexing and query analysis stages. I really need something that will allow that and give a single token as in the example below. Best Nick