Yep, words less than 3 chars will not be indexed. But if "Al Abbas" text can be
separated into a token "Abbas" (and "Al" but it is not counted as a token as
it has 2 chars only) then we can apply OR condition in the query?
On 2021/10/22 14:37:51, Andy C wrote:
> The issue looks to me to be
The issue looks to me to be with the use of EdgeNGramFilterFactory in your
field type. You have configured it with minGramSize="3" and have not
specified preserveOriginal="true".
So words less than 3 characters will not be indexed, and therefore can't be
searched.
See
https://solr.apache.org/guid
Thanks, Thamiz
It seems that I have index=StandardTokenizerFactory causing the issue
I do not want to re-index. Is there any solution ? Should I have query "OR" so
that the search can return "Al Abbas" when I have "Al Abbas" in the query
field (eg: there is a OR match "Abbas" ?
Thanks
On 2