Elasticsearch的查询语句包括:
{
"query": {
"match": {
"title": "高亮"
}
}
}
{
"query": {
"term": {
"age": 25
}
}
}
{
"query": {
"range": {
"price": {
"gte": 100,
"lte": 200
}
}
}
}
{
"query": {
"bool": {
"must": [
{
"match": {
"title": "高亮"
}
},
{
"range": {
"price": {
"gte": 100,
"lte": 200
}
}
}
],
"must_not": [
{
"term": {
"status": "已下架"
}
}
],
"should": [
{
"match": {
"description": "美观"
}
},
{
"match": {
"description": "实用"
}
}
],
"filter": {
"term": {
"category": "家具"
}
}
}
}
}
{
"query": {
"match_phrase": {
"title": {
"query": "高亮颜色",
"slop": 2
}
}
}
}
*
和?
,其中*
匹配0个或多个字符,?
匹配一个字符。例如:{
"query": {
"wildcard": {
"title": "高亮*"
}
}
}
{
"query": {
"prefix": {
"title": "高亮"
}
}
}
{
"query": {
"fuzzy": {
"title": {
"value": "高亮",
"fuzziness": "AUTO"
}
}
}
}
{
"query": {
"regexp": {
"title": "高亮.*"
}
}
}
以上关键词的高亮颜色分别为: