php elasticsearch 关键词搜索配置

Posted 下雨le

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php elasticsearch 关键词搜索配置相关的知识,希望对你有一定的参考价值。

CURL接口方式调用数据,网络搜索了一下大都不能使用,自己研究了一下。

参数格式按照如下传递:

php

‘query‘ => [
  "bool" => [
    "must" => [
        ["term" => ["type" => $type]],
         ["query_string" => ["default_field" => "name", "query" => $title]]
      ]
  ]
]

JS JSON:

{
    "query": {
        "bool": {
            "must": [
                {
                    "term": {
                        "type": "ask"
                    }
                },
                {
                    "query_string": {
                        "default_field": "name",
                        "query": "三"
                    }
                }
            ]
        }
    }
}

 

以上是关于php elasticsearch 关键词搜索配置的主要内容,如果未能解决你的问题,请参考以下文章

搜索引擎中隐性关键词的使用不构成不正当竞争

Elasticsearch使用Elasticsearch实现同段和同句搜索

ElasticSearch系列之什么是ElasticSearch?

ElasticSearch系列之什么是ElasticSearch?

深入研究查询Elasticsearch,过滤查询和全文搜索

Elasticsearch Elasticsearch Suggester 自动纠错 详解