在映射中,您可以将字段定义为not_analyzed。
curl -X PUT "http://localhost:9200/sample" -d '{ "index": { "number_of_shards": 1, "number_of_replicas": 1 }}'echocurl -X PUT "http://localhost:9200/sample/data/_mapping" -d '{ "data": { "properties": { "name": { "type": "string", "index": "not_analyzed" } } }}'
现在,如果您可以进行普通索引和普通搜索,它就不会对其进行分析并确保其提供不区分大小写的搜索。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)