1

所以假设我有一个这样定义的 ElasticSearch 索引:

curl -XPUT 'http://localhost:9200/test' -d '{
  "mappings": {
    "example": {
      "properties": {
        "text": {
          "type": "string",
          "analyzer": "snowball"
        }
      }
    }
  }
}'

curl -XPUT 'http://localhost:9200/test/example/1' -d '{
  "text": "foo bar organization"
}'

当我使用雪球分析器搜索“foo 组织”时,两个关键字都按预期匹配:

curl -XGET http://localhost:9200/test/example/_search -d '{
  "query": {
    "text": {
      "_all": {
        "query": "foo organizations",
        "analyzer": "snowball"
      }
    }
  },
  "highlight": {
    "fields": {
      "text": {}
    }
  }
}'

{
  "took": 1,
  "timed_out": false,
  "_shards": {
    "total": 5,
    "successful": 5,
    "failed": 0
  },
  "hits": {
    "total": 1,
    "max_score": 0.015912745,
    "hits": [
      {
        "_index": "test",
        "_type": "example",
        "_id": "1",
        "_score": 0.015912745,
        "_source": {
          "text": "foo bar organization"
        },
        "highlight": {
          "text": [
            "<em>foo</em> bar <em>organization</em>"
          ]
        }
      }
    ]
  }
}

但是当我只搜索“组织”时,我根本没有得到任何结果,这很奇怪:

curl -XGET http://localhost:9200/test/example/_search -d '{
  "query": {
    "text": {
      "_all": {
        "query": "organizations",
        "analyzer": "snowball"
      }
    }
  },
  "highlight": {
    "fields": {
      "text": {}
    }
  }
}'

{
  "took": 1,
  "timed_out": false,
  "_shards": {
    "total": 5,
    "successful": 5,
    "failed": 0
  },
  "hits": {
    "total": 0,
    "max_score": null,
    "hits": []
  }
}

但是,如果我搜索“酒吧”,它仍然会命中:

curl -XGET http://localhost:9200/test/example/_search -d '{
  "query": {
    "text": {
      "_all": {
        "query": "bars",
        "analyzer": "snowball"
      }
    }
  },
  "highlight": {
    "fields": {
      "text": {}
    }
  }
}'

{
  "took": 1,
  "timed_out": false,
  "_shards": {
    "total": 5,
    "successful": 5,
    "failed": 0
  },
  "hits": {
    "total": 1,
    "max_score": 0.10848885,
    "hits": [
      {
        "_index": "test",
        "_type": "example",
        "_id": "1",
        "_score": 0.10848885,
        "_source": {
          "text": "foo bar organization"
        },
        "highlight": {
          "text": [
            "foo <em>bar</em> organization"
          ]
        }
      }
    ]
  }
}

我猜“bar”和“organization”之间的区别在于“organization”源于“organ”,而“bar”源于其自身。但是我如何获得正确的行为以便第二次搜索命中?

4

2 回答 2

1

文本“foo bar organization”被索引两次 - 在字段text和字段_all中。字段文本使用雪球分析器,字段_all使用标准分析器。因此,在分析测试记录后,字段_all包含标记:“foo”、“bar”和“organization”。在搜索期间,指定的雪球分析器将“foo”转换为“foo”,将“bars”转换为“bar”,将“organization”转换为“organ”。因此,查询中的单词“foo”和“bars”与测试记录匹配,而术语“organization”则不匹配。突出显示是在每个字段的基础上执行的,独立于搜索,并且'

于 2012-03-14T13:18:19.030 回答
0

在索引时使用分析器比在搜索时使用分析器更好。将您的文本字段映射到雪球分析器,然后索引。这将为包括组织在内的组织创建一些令牌。它对我有用

于 2014-03-06T15:52:48.707 回答