通过url get 查询的方法不够灵活,此处不讨论,仅讨论 DSL 方式。
一、match 查询和 term 查询
简单来说, 这两个的区别就是 match 查询会对查询条件进行分词操作,而 term 查询不会。比如你输入的查询条件是 “东南大学”,那么 match 查询的条件就可能变成 “东南”“大学”匹配这两个词汇进行查询(分词的粒度由使用的分词器决定);而 term 查询就只会查询 “东南大学”。
curl -XPOST http://localhost:9200/myindex/mytype/_search -d '
{
"query": {
"match": {
"title": "东南大学"
}
}
}
'
curl -XPOST http://localhost:9200/myindex/mytype/_search -d '
{
"query": {
"term": {
"title": "东南大学"
}
}
}
'
查询一个字段被分词的情况
curl -X GET http://localhost:9200/myindex/mytype/1/_termvectors?fields=title
二. bool 查询
在复杂的查询中我们使用的最多的就是bool查询,适用于多种 “与” “或” 条件的组合