【问题标题】:Elasticsearch: how to make product name count more than product description in a search?Elasticsearch:如何在搜索中让产品名称比产品描述更重要?
【发布时间】:2014-06-29 08:04:34
【问题描述】:

我正在建立一个电子商务网站。在搜索带有字符串的产品时,我想搜索name 字段和description 字段,并且我希望名称字段比描述更重要。

我该怎么做?我应该看哪些术语?

【问题讨论】:

标签: java lucene elasticsearch


【解决方案1】:

这是一个关于查询中query_string 部分的示例:

 "query_string" : {
    "fields" : ["description", "name^5"],
    "query" : "this AND that OR thus",
 }

你可以阅读更多关于查询字符串here

【讨论】:

    猜你喜欢
    • 2019-07-29
    • 2015-03-23
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-12-10
    • 1970-01-01
    • 2014-06-22
    • 2011-03-27
    相关资源
    最近更新 更多