tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(server): dont run major compaction on tres

dusk 109a2f6c 862edeee

-4
-4
server/src/db/mod.rs
··· 268 268 269 269 pub fn major_compact(&self) -> AppResult<()> { 270 270 self.compact_all(self.cfg.max_block_size, .., true)?; 271 - let _guard = scc::ebr::Guard::new(); 272 - for (_, handle) in self.hits.iter(&_guard) { 273 - handle.deref().major_compact()?; 274 - } 275 271 Ok(()) 276 272 } 277 273