Add BytesFilterCollector to support filtering based on a bytes fast field (#2075)

* Do some Clippy- and Cargo-related boy-scouting.

* Add BytesFilterCollector to support filtering based on a bytes fast field

This is basically a copy of the existing FilterCollector but modified and
specialised to work on a bytes fast field.

* Changed semantics of filter collectors to consider multi-valued fields
This commit is contained in:
Adam Reichold
2023-06-13 07:19:58 +02:00
committed by GitHub
parent 8199aa7de7
commit ebc78127f3
8 changed files with 223 additions and 47 deletions

View File

@@ -1,6 +1,6 @@
use std::ops::RangeInclusive;
#[cfg(any(target_arch = "x86_64"))]
#[cfg(target_arch = "x86_64")]
mod avx2;
mod scalar;