Slide 4
Slide 4 text
{ }
Current State
{
"query": {
"filtered": {
"query": {
"function_score": {
"query": {
"bool": {
"must": [
{"multi_match": {
"fields": ["title^10", "body"], "query": "php"}},
{"has_child": {
"child_type": "answer",
"query": {"match": {"body": "python"}}}}
],
"must_not": [
{"multi_match": {
"fields": ["title", "body"],
"query": "python"}}
]
}
},
"field_value_factor": {"field": "rating"}
}
},
"filter": {"range": {"creation_date": {"from": "2010-01-01"}}}
}},
4
"highlight": {
"fields": {
"title": {"fragment_size" : 50},
"body": {"fragment_size" : 50}
}
},
"aggs": {
"tags": {
"terms": {"field": "tags"},
"aggs": {
"comment_avg": {
"avg": {"field": "comment_count"}
}
}
},
"frequency": {
"date_histogram": {
"field": "creation_date",
"interval": "month"
}
}
}
}
JSON DSL