建筑类招聘网站有哪些,网站顶部怎么做新浪链接,网页设计示范html代码,网站域名的组成设置关键词是否区分大小写
说明#xff1a;case_insensitive是term的可选参数#xff0c;默认为false#xff0c;表示关键词区分大小写#xff0c;设置为true表示关键词不区分大小写。该参数在7.10.0开始有效
需求#xff1a;分别使用关键词iphone和I…设置关键词是否区分大小写
说明case_insensitive是term的可选参数默认为false表示关键词区分大小写设置为true表示关键词不区分大小写。该参数在7.10.0开始有效
需求分别使用关键词iphone和IPHONE作为手机品牌的搜索条件精准搜索文档。
第一步实现需求。发现iphone为条件可以查询出来而IPHONE为条件查询不出来。说明该参数默认区分大小写。 GET /stu_db/_search { query: { term: { mobilePhoneType: { value: IPHONE } } } } 第二步设置为true即关键词不区分大小写。使用关键词IPHONE作为手机品牌的搜索条件精准搜索文档。可以搜索出文档证明该参数分析正确。 GET /stu_db/_search { query: { term: { mobilePhoneType: { value: IPHONE, case_insensitive:true } } } } 若版本过低则会出现以下报错 { error: { root_cause: [ { type: parsing_exception, reason: [term] query does not support [case_insensitive], line: 6, col: 28 } ], type: parsing_exception, reason: [term] query does not support [case_insensitive], line: 6, col: 28 }, status: 400 }