Skip to content

Commit

Permalink
big cache size
Browse files Browse the repository at this point in the history
  • Loading branch information
forcodedancing committed Oct 21, 2024
1 parent abd1075 commit 68834e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use std::sync::atomic::AtomicU64;
use tracing::info;

// Cache sizes
const ACCOUNT_CACHE_SIZE: usize = 500000;
const STORAGE_CACHE_SIZE: usize = ACCOUNT_CACHE_SIZE * 2;
const ACCOUNT_CACHE_SIZE: usize = 1000000;
const STORAGE_CACHE_SIZE: usize = ACCOUNT_CACHE_SIZE * 10;
const CONTRACT_CACHE_SIZE: usize = 10000;

// Type alias for address and storage key tuple
Expand Down

0 comments on commit 68834e9

Please sign in to comment.