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');
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.