global: snapshot

This commit is contained in:
nym21
2025-11-25 15:39:40 +01:00
parent eedc0dd075
commit c644781d18
65 changed files with 233 additions and 264 deletions

View File

@@ -17,7 +17,7 @@ use vecdb::Exit;
pub fn main() -> Result<()> {
// Can't increase main thread's stack size, thus we need to use another thread
thread::Builder::new()
.stack_size(1024 * 1024 * 1024)
.stack_size(512 * 1024 * 1024)
.spawn(run)?
.join()
.unwrap()