0

我似乎无法弄清楚如何让 elasticsearch(通过 pyes 访问)来搜索复数/单数术语。例如,当我进入 Monkies 时,我想返回带有 Belt 的结果。我看过Elasticsearch 没有返回单数/复数匹配,但似乎无法理解。这是一些 curl 语句

curl -XDELETE localhost:9200/myindex

curl -XPOST localhost:9200/myindex -d '
{"index": 
  { "number_of_shards": 1,
    "analysis": {
       "filter": {
                "myfilter": {
                    "type" : "porter_stem",
                    "language" : "English"
                }
                 },
       "analyzer": {
             "default" : {                    
                 "tokenizer" : "nGram",
                 "filter" : ["lowercase", "myfilter"]
              },
             "index_analyzer" : {                    
                 "tokenizer" : "nGram",
                 "filter" : ["lowercase", "myfilter"]
              },
              "search_analyzer" : {                                                    
                  "tokenizer" : "nGram",
                  "filter" : ["lowercase", "myfilter"]
              }
        }
     }
  }
}
}'

curl -XPUT localhost:9200/myindex/mytype/_mapping -d '{
    "tweet" : {
        "date_formats" : ["yyyy-MM-dd", "dd-MM-yyyy"],
        "properties" : {
            "user": {"type":"string"},
            "post_date": {"type": "date"},
            "message" : {"type" : "string", "analyzer": "search_analyzer"}
        }
    }}'

curl -XPUT 'http://localhost:9200/myindex/mytype/1' -d '{
"user" : "kimchy",
"post_date" : "2009-11-15T14:12:12",
"message" : "belt knife is a cool thing"
}'

curl -XPUT 'http://localhost:9200/myindex/mytype/2' -d '{
"user" : "alwild",
"post_date" : "2009-11-15T14:12:12",
"message" : "second message with nothing else"
}'

curl -XGET localhost:9200/myindex/mytype/_search?q=message:belts

我已经到了搜索腰带给我一些结果的地步……但现在它给出的结果太多了。我该怎么做才能让它只返回一个带有“腰带”的条目?

4

2 回答 2

3

默认情况下,您的查询是针对_all使用标准分析器的字段执行的,因此您没有词干。尝试使用查询进行搜索,例如name:Monkies. 出于生产目的,请使用match查询,它将在您的查询和字段映射之间正确连接分析器。

顺便说一下,Elasticsearch 可以很容易地比较不同的分析设置。相比:

http://localhost:9200/_analyze?text=Monkies&analyzer=standard

对比

http://localhost:9200/_analyze?text=Monkies&analyzer=snowball
于 2013-02-15T07:35:21.853 回答
0

你能把它减少到几个 curl 调用,用这个映射创建你的索引,索引一些数据,并执行一个显示你没有预料到的结果的搜索吗?

于 2013-02-14T22:48:02.280 回答