reduce cache entry count per pmtiles file

This commit is contained in:
Yuri Astrakhan 2023-12-22 13:09:15 -05:00
parent 1bfc76cb58
commit 5c5ebee745

View File

@ -23,7 +23,7 @@ struct PmtCache(Cache<usize, Directory>);
impl PmtCache { impl PmtCache {
fn new() -> Self { fn new() -> Self {
Self(Cache::new(10_000)) Self(Cache::new(500))
} }
} }