I'm studying Elastic Search queries. I can not understand this query:
{
"term" : { "user" : { "term" : "kimchy", "boost" : 2.0 } }
}
I've read this article but it's not clear: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
1- What is the second "term"?
2- What is the usage of boost?
3- How to use term or terms to have this query:
a field named "title" must contains: "key1" and "key2" or "key3" and "key4"