Skip to content

Commit

Permalink
fix: cache L2 capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludo Galabru committed Aug 15, 2023
1 parent dbc794a commit e2fbc73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub fn start_inscription_indexing_processor(
let ctx = ctx.clone();
let handle: JoinHandle<()> = hiro_system_kit::thread_named("Inscription indexing runloop")
.spawn(move || {
let cache_l2 = Arc::new(new_traversals_lazy_cache(100_000));
let cache_l2 = Arc::new(new_traversals_lazy_cache(10_000));
let garbage_collect_every_n_blocks = 256;
let mut garbage_collect_nth_block = 0;

Expand Down

0 comments on commit e2fbc73

Please sign in to comment.