Elasticsearch"以"开头短语中的第一个单词

时间:2015-04-20 07:26:38

标签: elasticsearch startswith

我尝试使用Elasticsearch为我的内容实现A-Z导航。 我需要的是显示所有结果,例如以a,b,c,......等。

我试过了:

"query": {
        "match_phrase_prefix" : {
        "title" : {
            "query" : "a"
        }
      }
    }

上面提到的查询也会显示结果,其中字符串中的单词以a开头。 例如:

" title":" Apfelpfannkuchen",

" title":" Affogato",

" title":" Kalbsschnitzel a n A ceto Balsamico",

我想只显示第一个单词以a开头的短语。

这里我使用的映射:

$params = array(
            'index' => 'my_index',
            'body' => array(
                'settings' => array(
                    'number_of_shards' => 1,
                    'index' => array(
                        'analysis' => array(
                            'filter' => array(
                                'nGram_filter' => array(
                                    'type' => 'nGram',
                                    'min_gram' => 2,
                                    'max_gram' => 20,
                                    'token_chars' => array('letter', 'digit', 'punctuation', 'symbol')
                                )
                            ),
                            'analyzer' => array(
                                'nGram_analyzer' => array(
                                    'type' => 'custom',
                                    'tokenizer' => 'whitespace',
                                    'filter' => array('lowercase', 'asciifolding', 'nGram_filter')
                                ),
                                'whitespace_analyzer' => array(
                                    'type' => 'custom',
                                    'tokenizer' => 'whitespace',
                                    'filter' => array('lowercase', 'asciifolding')
                                ),
                                'analyzer_startswith' => array(
                                    'tokenizer' => 'keyword',
                                    'filter' => 'lowercase'
                                )
                            )
                        )
                    )
                ),
                'mappings' => array(
                    'tags' => array(
                        '_all' => array(
                            'type' => 'string',
                            'index_analyzer' => 'nGram_analyzer',
                            'search_analyzer' => 'whitespace_analyzer'
                        ),
                        'properties' => array()

                    ),
                    'posts' => array(
                        '_all' => array(
                            'index_analyzer' => 'nGram_analyzer',
                            'search_analyzer' => 'whitespace_analyzer'
                        ),
                        'properties' => array(
                            'title' => array(
                                'type' => 'string',
                                'index_analyzer' => 'analyzer_startswith',
                                'search_analyzer' => 'analyzer_startswith'
                            )
                        )
                    )
                )
            )
        );

3 个答案:

答案 0 :(得分:13)

如果您使用默认映射,那么它将不适合您。

您需要在映射中使用keyword tokenizerlowercase filter

映射将是:

{
    "settings": {
        "index": {
            "analysis": {
                "analyzer": {
                    "analyzer_startswith": {
                        "tokenizer": "keyword",
                        "filter": "lowercase"
                    }
                }
            }
        }
    },
    "mappings": {
        "test_index": {
            "properties": {
                "title": {
                    "search_analyzer": "analyzer_startswith",
                    "index_analyzer": "analyzer_startswith",
                    "type": "string"
                }
            }
        }
    }
}

test_index上搜索查询:

{
    "query": {
        "match_phrase_prefix": {
            "title": {
                "query": "a"
            }
        }
    }
}

它将返回以a

开头的所有帖子标题

答案 1 :(得分:1)

或者,可以使用span_near

GET your_index/_search
{
  "query": {
    "span_first": {
      "match": {
        "span_term": {
          "your_field": "first_token"
        }
      },
      "end": 1
    }
  },
  "_source": "your_field"
}

答案 2 :(得分:0)

我正在根据this gist更新@Roopendra的答案。因此,进行了更新,在searchindex的初始版本中似乎不起作用,仅替换为initializersstring也需要替换为{ {1}}。

因此,我们有以下映射文件

text

使用以下查询

{
    "settings": {
        "index": {
            "analysis": {
                "analyzer": {
                    "analyzer_startswith": {
                        "tokenizer": "keyword",
                        "filter": "lowercase"
                    }
                }
            }
        }
    },
    "mappings": {
        "test_index": {
            "properties": {
                "title": {
                    "analyzer": "analyzer_startswith",
                    "type": "text"
                }
            }
        }
    }
}

我在查询中添加了{ "query": { "match_phrase_prefix": { "title": { "query": "a", "max_expansions": 100 } } } } ,因为默认值似乎是max_expansions,所以我得到了错误的结果,在您的情况下,该值可能更高。