Hi all,
we are using a custom locator based on local data. The data are quite extensive and with a lot of information.
We have on our data a street entry with the following attributes:
Street name = 'Ruy'
Full street name = 'Rue Ruy'
Prefix type = 'Rue'
etc.
When we search for a street address using the suggest method and we use Text = 'Ruy', we receive zero suggestions. The same with the findCandidates.
If we search with the Text = 'Rue Ruy' we receive all the related results, same behaviour in findCandidates.
We would like to receive all the related results, even if the user is typing 'Ruy'. We have tried to use wildcards, changing the minimum match/candidate score to very low values, Match with no zones is set to yes, but no luck so far.
It seems like the query works as if it is: Text like 'Ruy%', instead of Text like '%Ruy%'
We have noticed also, that Single line Address Field is the FullAddress .
Is there any way to retrieve suggestions as if we were searching Text like '%Ruy%' ? That would be the best solution for us 😄
Or is there any other way to improve this results?