From 8812c631edf6115946e2e7b2295f3221e206d383 Mon Sep 17 00:00:00 2001 From: Avinash Sajjanshetty Date: Fri, 6 Oct 2023 13:51:17 +0530 Subject: [PATCH] Remove `page_size` recommendation in bottomless --- bottomless/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/bottomless/README.md b/bottomless/README.md index bfffd43c..57c69139 100644 --- a/bottomless/README.md +++ b/bottomless/README.md @@ -33,13 +33,10 @@ From libSQL/SQLite shell, load the extension and open a database file with `bott ```sql .load ../target/debug/bottomless .open file:test.db?wal=bottomless -PRAGMA page_size=65536; PRAGMA journal_mode=wal; ``` Remember to set the journaling mode to `WAL`, which needs to be done at least once, before writing any content, otherwise the custom WAL implementation will not be used. -The recommended page size for replicated WAL is the maximum - 64KiB. Most S3-compatible storage vendors have minimum billable object size set to ~128KiB anyway. - In order to customize logging, use `RUST_LOG` env variable, e.g. `RUST_LOG=info ./libsql`. A short demo script is in `test/smoke_test.sh`, and can be executed with: