A high level library, giving a strongly typed DSL that maps one to one with the official Elasticsearch query DSL.
Add elasticsearch-dsl
crate and version to Cargo.toml
toml
[dependencies]
elasticsearch-dsl = "0.4"
Documentation for the library is available on docs.rs
```rust use elasticsearch_dsl::*;
fn main() { let query = Search::new() .source(false) .stats("statistics") .from(0) .size(30) .query( Query::bool() .must(Query::multimatch( ["title", "description"], "you know, for search", )) .filter(Query::terms("tags", ["elasticsearch"])) .should(Query::term("verified", true).boost(10)), ) .aggregate( "countryids", Aggregation::terms("countryid") .aggregate("catalogids", Aggregation::terms("catalogid")) .aggregate("companyids", Aggregation::terms("companyid")) .aggregate( "top1", Aggregation::tophits() .size(1) .sort(FieldSort::ascending("userid")), ), ) .rescore(Rescore::new(Query::term("field", 1)).queryweight(1.2)); } ```
json
{
"_source": false,
"stats": ["statistics"],
"from": 0,
"size": 30,
"query": {
"bool": {
"must": [
{
"multi_match": {
"fields": ["title", "description"],
"query": "you know, for search"
}
}
],
"filter": [{ "terms": { "tags": ["elasticsearch"] } }],
"should": [{ "term": { "verified": { "value": true, "boost": 10.0 } } }]
}
},
"aggs": {
"country_ids": {
"terms": { "field": "country_id" },
"aggs": {
"catalog_ids": { "terms": { "field": "catalog_id" } },
"company_ids": { "terms": { "field": "company_id" } },
"top1": {
"top_hits": {
"size": 1,
"sort": [{ "user_id": { "order": "asc" } }]
}
}
}
}
},
"rescore": [
{
"query": {
"rescore_query": { "term": { "field": { "value": 1 } } },
"query_weight": 1.2
}
}
]
}
See examples for more.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.