Skip to content

Commit

Permalink
chore: change page size to 4MiB
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Dec 12, 2024
1 parent b7b91bb commit 02a8564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mito2/src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const FILE_TYPE: &str = "file";
const SELECTOR_RESULT_TYPE: &str = "selector_result";

/// Page size for cache. Currently only used for inverted index cache.
const PAGE_SIZE: usize = 8192 * 1024; // 8MB
const PAGE_SIZE: usize = 4096 * 1024 * 1024; // 4MB

/// Manages cached data for the engine.
///
Expand Down

0 comments on commit 02a8564

Please sign in to comment.