我最近开始使用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
,如何忽略搜索中的句点。感谢