1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-05 23:47:46 +00:00

sort: increase default merge batch size

I think we can attempt to open 32 files concurrently on all systems
without risking resource exhaustion.
This commit is contained in:
Michael Debertol 2021-06-09 20:34:54 +02:00
parent 6a3c1c19d9
commit 047ced2c7f

View file

@ -236,7 +236,7 @@ impl Default for GlobalSettings {
buffer_size: DEFAULT_BUF_SIZE,
tmp_dir: PathBuf::new(),
compress_prog: None,
merge_batch_size: 16,
merge_batch_size: 32,
}
}
}