Reputation: 37
I'm Trying to implement synonyms map for the Suggest. Eg: Mt -> Mount This is perfectly working with Azure Search. But not working with Azure Suggest. Does anyone know this is a limitation with Cognitive search or is there a way to achieve?
Upvotes: 2
Views: 292
Reputation: 136206
Does anyone know this is a limitation with Cognitive search or is there a way to achieve?
Synonym maps are not supported for Suggesters. From the documentation here
:
Synonyms apply to free form text queries only and are not supported for filters, facets, autocomplete, or suggestions. Autocomplete and suggestions are based only on the original term; synonym matches do not appear in the response.
Upvotes: 3