在elasticsearch中,有一个date range query和模糊日期查询,但我没有看到查询特定日期的查询。
您知道这种查询是否存在吗?
答案 0 :(得分:2)
使用以下映射:
"properties": {
"myDate": {
"type": "date",
"format": "dd-MM-yyyy"
}
}
搜索确切日期的查询将是:
"query": {
"term": {
"myDate": {
"value": "10-10-2010"
}
}
}