Skip to content

Commit 0c73e62

Browse files
author
Ludo Galabru
committed
fix: iterate on values
1 parent f2b067e commit 0c73e62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/ordhook-cli/src/core/pipeline/processors/inscription_indexing.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ pub fn start_inscription_indexing_processor(
5656
let ctx = ctx.clone();
5757
let handle: JoinHandle<()> = hiro_system_kit::thread_named("Inscription indexing runloop")
5858
.spawn(move || {
59-
let cache_l2 = Arc::new(new_traversals_lazy_cache(10_000));
60-
let garbage_collect_every_n_blocks = 256;
59+
let cache_l2 = Arc::new(new_traversals_lazy_cache(2048));
60+
let garbage_collect_every_n_blocks = 100;
6161
let mut garbage_collect_nth_block = 0;
6262

6363
let mut inscriptions_db_conn_rw =

0 commit comments

Comments
 (0)