We need to create a field for an Index that is not going to be tokenised but still be searchable. In Azure Search if you make a field searchable, then the contents of the field are tokenised. If you make it filterable (documentation says then it wont be tokenised) then you cannot search it. In Lucene a KeywordAnalyzer does this job. Since Azure Search is also using Lucene cant understand why we cannot store a field contents AS IS in the index for searching WITHOUT splitting all the words/removing stop words etc. etc. Would appreciate any assistance
标签:
azure-search
相关问题
- what is the supported Model for multi-level Docume
- How to search based on field in azure search?
- AzureSearch : Dismax query parser capabilities
- Search Azure Search Index for documents within x k
- Azure-search: How to get documents which exactly c
相关文章
- 如何与指数字母数字字符的字段和通配符搜索破折号(How to index a field with
- 如何订购使用集合(Edm.GeographyPoint)时,在文件上的距离文档(How to ord
- Azure的搜索数据源与内部部署SQL Server和最佳做法?(Azure Search Data
- 返回从蔚蓝的搜索匹配的精确搜索项的记录只(Return records from azure sea
- Azure的搜索:排序动态数据(Azure Search: Order by dynamic dat
- what is the supported Model for multi-level Docume
- How to search based on field in azure search?
- AzureSearch : Dismax query parser capabilities
Using keyword and other Lucene analyzers is now possible using Custom analyzers feature of Azure Search. Note: this functionality is still in preview.
HTH!