Struct elasticsearch_dsl::search::queries::term_level::TermsLookupQuery
source · [−]pub struct TermsLookupQuery { /* private fields */ }
Expand description
Terms lookup fetches the field values of an existing document. Elasticsearch then uses those values as search terms. This can be helpful when searching for a large set of terms.
Because terms lookup fetches values from a document, the
_source
mapping field must be enabled to use terms lookup. The _source
field is enabled by default.
By default, Elasticsearch limits the
terms
query to a maximum of 65,536 terms. This includes terms fetched using terms lookup. You can change this limit using theindex.max_terms_count setting
.
To create a terms lookup query:
Query::terms_lookup("test", "index", "id", "path")
.routing("routing")
.boost(1.3)
.name("lookup");
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html
Implementations
sourceimpl TermsLookupQuery
impl TermsLookupQuery
sourcepub fn boost<B>(self, boost: B) -> Self where
B: TryInto<Boost>,
pub fn boost<B>(self, boost: B) -> Self where
B: TryInto<Boost>,
Floating point number used to decrease or increase the
relevance scores
of a query. Defaults to 1.0
.
You can use the boost parameter to adjust relevance scores for searches containing two or more queries.
Boost values are relative to the default value of 1.0
.
A boost value between 0 and 1.0
decreases the relevance score.
A value greater than 1.0
increases the relevance score.
sourceimpl TermsLookupQuery
impl TermsLookupQuery
sourcepub fn routing<S>(self, routing: S) -> Self where
S: ToString,
pub fn routing<S>(self, routing: S) -> Self where
S: ToString,
Custom routing value of the document from which to fetch term values. If a custom routing value was provided when the document was indexed, this parameter is required.
Trait Implementations
sourceimpl Clone for TermsLookupQuery
impl Clone for TermsLookupQuery
sourcefn clone(&self) -> TermsLookupQuery
fn clone(&self) -> TermsLookupQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TermsLookupQuery
impl Debug for TermsLookupQuery
sourceimpl From<TermsLookupQuery> for Query
impl From<TermsLookupQuery> for Query
sourcefn from(q: TermsLookupQuery) -> Self
fn from(q: TermsLookupQuery) -> Self
Converts to this type from the input type.
sourceimpl From<TermsLookupQuery> for Option<Query>
impl From<TermsLookupQuery> for Option<Query>
sourcefn from(q: TermsLookupQuery) -> Self
fn from(q: TermsLookupQuery) -> Self
Converts to this type from the input type.
sourceimpl From<TermsLookupQuery> for Queries
impl From<TermsLookupQuery> for Queries
sourcefn from(q: TermsLookupQuery) -> Self
fn from(q: TermsLookupQuery) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<Query> for TermsLookupQuery
impl PartialEq<Query> for TermsLookupQuery
sourceimpl PartialEq<TermsLookupQuery> for TermsLookupQuery
impl PartialEq<TermsLookupQuery> for TermsLookupQuery
sourcefn eq(&self, other: &TermsLookupQuery) -> bool
fn eq(&self, other: &TermsLookupQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TermsLookupQuery) -> bool
fn ne(&self, other: &TermsLookupQuery) -> bool
This method tests for !=
.
sourceimpl PartialEq<TermsLookupQuery> for Query
impl PartialEq<TermsLookupQuery> for Query
sourceimpl Serialize for TermsLookupQuery
impl Serialize for TermsLookupQuery
impl StructuralPartialEq for TermsLookupQuery
Auto Trait Implementations
impl RefUnwindSafe for TermsLookupQuery
impl Send for TermsLookupQuery
impl Sync for TermsLookupQuery
impl Unpin for TermsLookupQuery
impl UnwindSafe for TermsLookupQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more