- Elasticsearch Blueprints
- Vineeth Mohan
- 302字
- 2021-07-16 13:39:33
Searching with multiple conditions
Often, we find ourselves in a position where we need to search with more than one criterion, where each of these criteria could be expressed as an inpidual query. In this section, let's see how we can make such a combination of search.
One simple way to express multiple search criteria is using a bool
query. The bool
query lets you use a combination of other queries, where each of the conditions can be put using a Boolean clause. There are three Boolean clauses:
must
should
must_not
The must
clause suggests that the constituent query must appear in the matching documents. If there is no must
clause in the query, a combination of should
clauses can be given. Also, you may set the minimum number of should
clauses that should be matched. As the name indicates, must_not
means that this clause should not match the document.
Let's see how we can use the bool
query in Elasticsearch:
{ "bool" : { "must" : [{ "term" : { "productType" : "Laptop " } }], "must_not" : { "range" : { "dateOfManufactoring" : { "from" : 1990/01/01, "to" : 2014/01/01 } } }, "should" : [ { "term" : { "color" : "yellow" } }, { "term" : { "description" : "lenovo" } } ], "minimum_should_match" : 1, "boost" : 1.0 } }
Here, we used a bool
query to select all the laptops whose date of manufacturing is not between 1999 to 2014. Then, we boosted the laptops that were of the color yellow or were from lenovo.
Note
If there is at least one must
query, then none of the should
queries need to match a document to qualify that document as a result. In this case, the should
query match will increase the relevance of that document.
- Software Defined Networking with OpenFlow
- Mastering Zabbix(Second Edition)
- ASP.NET MVC4框架揭秘
- Vue.js 2 and Bootstrap 4 Web Development
- Python Tools for Visual Studio
- C#開發(fā)案例精粹
- Kotlin開發(fā)教程(全2冊)
- 汽車人機交互界面整合設(shè)計
- 從0到1:HTML5 Canvas動畫開發(fā)
- 深度學習程序設(shè)計實戰(zhàn)
- ROS機器人編程實戰(zhàn)
- Less Web Development Cookbook
- Mapping with ArcGIS Pro
- JavaScript語法簡明手冊
- Microsoft Azure Security