We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2b067e commit 0c73e62Copy full SHA for 0c73e62
components/ordhook-cli/src/core/pipeline/processors/inscription_indexing.rs
@@ -56,8 +56,8 @@ pub fn start_inscription_indexing_processor(
56
let ctx = ctx.clone();
57
let handle: JoinHandle<()> = hiro_system_kit::thread_named("Inscription indexing runloop")
58
.spawn(move || {
59
- let cache_l2 = Arc::new(new_traversals_lazy_cache(10_000));
60
- let garbage_collect_every_n_blocks = 256;
+ let cache_l2 = Arc::new(new_traversals_lazy_cache(2048));
+ let garbage_collect_every_n_blocks = 100;
61
let mut garbage_collect_nth_block = 0;
62
63
let mut inscriptions_db_conn_rw =
0 commit comments