When I do a LIKP search on 'paul' i get the following message: <!-- 115 /search:671: Query `paul' would require post-processing: Index expression(s) do not match term `p' -->
When I do the same search on 'John', the results are good.
What could the difference be between these two searches?
select COUNT(*) cnt FROM Crawdaddy WHERE Content LIKEP ('paul');
select COUNT(*) cnt FROM Crawdaddy WHERE Content LIKEP ('john');
You have minwordlen too low. It is stripping off the a and ul from Paul as suffixes, leaving only P. You could <SQL "set defsuffrm = 0"></SQL> to prevent the "a" being stripped, but generally you would want a more limited set of suffixes if you set minwordlen that low.
Well, setting minwordlen=4 solved the issue with 'Paul' and "john' and 'bob' still work. I guess this a trial-and-error situation to find the best setting. Any advice? Thanks.