#[non_exhaustive]pub enum VectorFilterStrategy {
PostFilter,
PreFilterCTE,
}Expand description
Strategy for combining vector search and graph traversal filters (§5.3).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PostFilter
Vector top-k′ from the index first, then discard what fails the filter.
Cheap when the filter is loose, because most of the k′ survives. Degrades
when it is tight, and FilteredVectorSearch escalates rather than
under-returning when it detects that it has.
PreFilterCTE
Candidate ids from the traversal first, then exact distances over just those rows.
Exact by construction — every candidate is scored, so nothing can fall
off the end of a k′. A brute-force scan over F32_BLOB with no index,
so it is priced by the candidate count.
Trait Implementations§
Source§impl Clone for VectorFilterStrategy
impl Clone for VectorFilterStrategy
Source§fn clone(&self) -> VectorFilterStrategy
fn clone(&self) -> VectorFilterStrategy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VectorFilterStrategy
Source§impl Debug for VectorFilterStrategy
impl Debug for VectorFilterStrategy
Source§impl<'de> Deserialize<'de> for VectorFilterStrategy
impl<'de> Deserialize<'de> for VectorFilterStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for VectorFilterStrategy
Source§impl PartialEq for VectorFilterStrategy
impl PartialEq for VectorFilterStrategy
Source§impl Serialize for VectorFilterStrategy
impl Serialize for VectorFilterStrategy
impl StructuralPartialEq for VectorFilterStrategy
Auto Trait Implementations§
impl Freeze for VectorFilterStrategy
impl RefUnwindSafe for VectorFilterStrategy
impl Send for VectorFilterStrategy
impl Sync for VectorFilterStrategy
impl Unpin for VectorFilterStrategy
impl UnsafeUnpin for VectorFilterStrategy
impl UnwindSafe for VectorFilterStrategy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request