use super::partitioner::ThreadCount;
#[derive(Debug, Clone)]
pub struct PartitionedSearchConfig {
pub thread_count: ThreadCount,
pub log_progress: bool,
}
impl Default for PartitionedSearchConfig {
fn default() -> Self {
Self {
thread_count: ThreadCount::Auto,
log_progress: false,
}
}
}