Reduce memory usage

This commit is contained in:
Jarred Sumner
2022-01-05 16:42:08 -08:00
parent 4b717fe554
commit 4e744c057b

View File

@@ -25,8 +25,8 @@ const hash_map = @import("hash_map.zig");
pub const Preallocate = struct {
pub const Counts = struct {
pub const dir_entry: usize = 4096;
pub const files: usize = 8096;
pub const dir_entry: usize = 2048;
pub const files: usize = 4096;
};
};