ElasticSeach匹配包含或不包含句点的所有关键字

时间:2016-07-22 12:28:49

标签: php elasticsearch

我最近开始使用ElasticSearch。这里有一些索引文档...

printshop.com
printcafe.com
print.com
print.shop

这就是我正在使用的......

$client = ClientBuilder::create()->build();

$params = [
    'index' => 'domains',
    'type' => 'all',
    'body' => [
        'query' => [
            'match' => [
                'domain' => 'printshop'
            ]
        ]
    ]
];

$response = $client->search($params);

这几乎返回所有结果但不返回print.shop,如何忽略搜索中的句点。感谢

0 个答案:

没有答案