increase retransmit shreds received cache size (#30556)

This commit is contained in:
Jeff Biseda 2023-03-07 13:03:52 -08:00 committed by GitHub
parent 63052ed463
commit 4c0ce84488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ use {
};
const MAX_DUPLICATE_COUNT: usize = 2;
const DEFAULT_LRU_SIZE: usize = 10_000;
const DEFAULT_LRU_SIZE: usize = 1 << 20;
// Minimum number of shreds to use rayon parallel iterators.
const PAR_ITER_MIN_NUM_SHREDS: usize = 2;