45 lines
No EOL
1.8 KiB
Diff
45 lines
No EOL
1.8 KiB
Diff
From 4797a2f62ab3d2716d313aa4a3170ba9672a93b6 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
|
|
Date: Fri, 22 Mar 2024 08:46:07 +0100
|
|
Subject: [PATCH] make atuin on zfs fast again
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
|
|
---
|
|
atuin-client/src/database.rs | 4 ++--
|
|
atuin-client/src/record/sqlite_store.rs | 2 ++
|
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/atuin-client/src/database.rs b/atuin-client/src/database.rs
|
|
index b0bcae31..d8db492b 100644
|
|
--- a/atuin-client/src/database.rs
|
|
+++ b/atuin-client/src/database.rs
|
|
@@ -137,9 +137,9 @@ pub async fn new(path: impl AsRef<Path>, timeout: f64) -> Result<Self> {
|
|
}
|
|
|
|
let opts = SqliteConnectOptions::from_str(path.as_os_str().to_str().unwrap())?
|
|
- .journal_mode(SqliteJournalMode::Wal)
|
|
+ .journal_mode(SqliteJournalMode::Memory)
|
|
.optimize_on_close(true, None)
|
|
- .synchronous(SqliteSynchronous::Normal)
|
|
+ .synchronous(sqlx::sqlite::SqliteSynchronous::Off)
|
|
.with_regexp()
|
|
.create_if_missing(true);
|
|
|
|
diff --git a/atuin-client/src/record/sqlite_store.rs b/atuin-client/src/record/sqlite_store.rs
|
|
index 6333bb27..1f25a55b 100644
|
|
--- a/atuin-client/src/record/sqlite_store.rs
|
|
+++ b/atuin-client/src/record/sqlite_store.rs
|
|
@@ -42,6 +42,8 @@ pub async fn new(path: impl AsRef<Path>, timeout: f64) -> Result<Self> {
|
|
|
|
let opts = SqliteConnectOptions::from_str(path.as_os_str().to_str().unwrap())?
|
|
.journal_mode(SqliteJournalMode::Wal)
|
|
+ .journal_mode(SqliteJournalMode::Memory)
|
|
+ .synchronous(sqlx::sqlite::SqliteSynchronous::Off)
|
|
.foreign_keys(true)
|
|
.create_if_missing(true);
|
|
|
|
--
|
|
2.43.1
|