Enhancing Umbraco Examine Search: Reducing Minimum...
# help-with-umbraco
t
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?
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
m
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.
5 Views