面试题答案
一键面试{
"query": {
"bool": {
"filter": [
{
"term": {
"category": "important"
}
}
]
}
},
"script_fields": {
"days_since_timestamp": {
"script": {
"source": "def now = new Date(); def timestampDate = new Date(doc['timestamp'].value); return (now.getTime() - timestampDate.getTime()) / (24 * 60 * 60 * 1000);"
}
}
}
}