-
must not { "query": { "bool": { "must_not": { "term": { "author": "cc" } } } } }查看全部
-
must+filter { "query": { "bool": { "must": [ { "match": { "author":"cc" } }, { "match": { "title": "ElasticSearch" } } ], "filter": [ { "range": { "word_count": { "gte":8000, "lte": 10000000 } } } ] } } }查看全部
-
must { "query": { "bool": { "must": [ { "match": { "author":"cc" } }, { "match": { "title": "ElasticSearch" } } ] } } }查看全部
-
should { "query": { "bool": { "should": [ { "match": { "author":"cc" } }, { "match": { "title": "ElasticSearch" } } ] } } }查看全部
-
固定分数查询 { "query": { "constant_score": { "filter": { "match": { "title": "ElasticSearch" } }, "boost":2 } } }查看全部
-
复合条件查询 常用查询: 1.固定分数查询 2.布尔查询 3....more查看全部
-
filter query { "query": { "bool": { "filter": { "term": { "word_count": 455 } } } } }查看全部
-
Filter Context 在查询过程中,只判断该文档是否满足条件,只有Yes或No查看全部
-
字段级别日期范围查询查看全部
-
字段级别范围查询: { "query": { "range": { "word_count": { "gte": 455, "lte": 22566 } } } }查看全部
-
字段级别查询 { "query": { "term": { "author": "cc" } } }查看全部
-
语法查询 Post url:192.168.197.128:9200/book/_search { "query": { "query_string": { "query": "(ElasticSearch AND 哈哈哈) OR 入门" } } }查看全部
-
多个字段匹配查询 POST URL:192.168.197.128:9200/book/_search { "query": { "multi_match": { "query": "三", "fields": ["author","title"] } } }查看全部
-
全部匹配 { "query": { "match_phrase": { "title": "ElasticSearch入门" } } }查看全部
-
Query Context 常用查询: 1.全文本查询: 针对文本类型数据 2.字段级别查询:针对结构化数据,如数字、日期等查看全部
举报
0/150
提交
取消