From c9a9b7bc78552b97ebb4656a98957c44323bbe84 Mon Sep 17 00:00:00 2001 From: mononaut Date: Fri, 10 Jul 2026 10:36:04 +0000 Subject: [PATCH] enable cache db auto compaction --- src/new_index/schema.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/new_index/schema.rs b/src/new_index/schema.rs index 433c55d6..14f52636 100644 --- a/src/new_index/schema.rs +++ b/src/new_index/schema.rs @@ -373,6 +373,7 @@ impl Indexer { start_fetcher(self.from, &daemon, to_index)? .map(|blocks| self.index(&blocks, Operation::AddBlocks)); self.start_auto_compactions(&self.store.history_db); + self.start_auto_compactions(&self.store.cache_db); if let DBFlush::Disable = self.flush { debug!("flushing to disk");