From 2a088e876e21d48abc478923305630cae05d270d Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 26 Mar 2023 14:06:15 +0200 Subject: [PATCH] Cache eviction helps Fixes #334. --- cli/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/main.rs b/cli/src/main.rs index b7505800f..28b3eb895 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -238,6 +238,7 @@ fn compile(command: CompileCommand) -> StrResult<()> { if recompile { compile_once(&mut world, &command)?; + comemo::evict(30); } } }