我正在尝试检索包含#maga
的随机文档,因此我执行了以下查询:
{
"_source": "text",
"query": {
"function_score": {
"query": {
"match": {
"text": "#maga"
}
},
"functions": [
{
"random_score": {}
}
]
}
}
}
问题是某些返回的文档不包含#maga
,而只包含令牌maga
。为什么这样?我怎么能解决这个问题呢?