I currently utilize the standard Umbraco Examine Search, which provides exact matches for up to 3 characters and is case-sensitive. From 4 characters onwards, it also returns results when part of the search query appears within a word and becomes case-insensitive. However, in our scenario, it's imperative to modify this logic to accommodate searches from 3 characters. How can this adjustment be made?
#Enhancing Umbraco Examine Search: Reducing Minimum Input to Three Characters
1 messages · Page 1 of 1 (latest)
I found the following, in which the 4 characters 'hard' appear. Any ideas or experiences, even those unrelated to this, to modify this:
https://github.com/Shazwazza/Examine/blob/release/4.0/src/Examine.Lucene/Indexing/FullTextType.cs
GitHub
A .NET indexing and search engine powered by Lucene.Net - Shazwazza/Examine
you are able to override the examine indexing options.. maybe you can create your own CustomFullTextType based on the one you've noted above and override on the fields you require?
We've used this approach to override the analyzer and protected content inclusion.