Skip to content
Snippets Groups Projects
Verified Commit 0e0ae520 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Reduce disk cache size to 16 MiB

parent 9215e322
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ impl<T: Disk> DiskCache<T> {
inner,
cache: HashMap::new(),
order: VecDeque::new(),
size: 65536, // 256 MB cache
size: 16 * 1024 * 1024 / BLOCK_SIZE as usize, // 16 MB cache
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment