Your organization uses Azure AI Search to index customer product reviews. The reviews are in English, Spanish, and French. You need to enable multi-lingual search so that a query in English returns relevant results from all three languages. What should you do?
This allows language-specific stemming and tokenization, and you can search across all fields using searchFields parameter.
Why this answer
Azure AI Search supports multi-lingual search by assigning language-specific analyzers per field. For cross-lingual search, you can use a single field with a language-agnostic analyzer like 'standard' or use multiple fields and query them. The best practice is to use separate fields per language with appropriate analyzers and search across all of them.