Add more detailed comments for max_indexing_threads

This commit is contained in:
2shiori17 2022-03-31 09:32:45 +09:00
parent a2d7c16f91
commit 98107565c0
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@ pub struct IndexerOpts {
pub max_indexing_memory: MaxMemory,
/// The maximum number of threads the indexer will use.
/// If the number set is higher than the real number of cores available in the machine,
/// it will use the maximum number of available cores.
///
/// It defaults to half of the available threads.
#[clap(long, env = "MEILI_MAX_INDEXING_THREADS", default_value_t)]
pub max_indexing_threads: MaxThreads,