Reduce the default indexer max-memory parameter

This commit is contained in:
Clément Renault
2020-10-02 16:47:41 +02:00
parent 007e647462
commit c4b0c57059

View File

@ -90,7 +90,7 @@ struct IndexerOpt {
max_nb_chunks: Option<usize>, max_nb_chunks: Option<usize>,
/// MTBL max memory in bytes. /// MTBL max memory in bytes.
#[structopt(long, default_value = "1610612736")] // 1.5 GB #[structopt(long, default_value = "1335885824")] // 1.25 GB
max_memory: usize, max_memory: usize,
/// Size of the linked hash map cache when indexing. /// Size of the linked hash map cache when indexing.