Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit a12c28c

Browse files
authored
Remove page_size recommendation in bottomless (#741)
1 parent ec8bcde commit a12c28c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

bottomless/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,10 @@ From libSQL/SQLite shell, load the extension and open a database file with `bott
3333
```sql
3434
.load ../target/debug/bottomless
3535
.open file:test.db?wal=bottomless
36-
PRAGMA page_size=65536;
3736
PRAGMA journal_mode=wal;
3837
```
3938
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.
4039

41-
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.
42-
4340
In order to customize logging, use `RUST_LOG` env variable, e.g. `RUST_LOG=info ./libsql`.
4441

4542
A short demo script is in `test/smoke_test.sh`, and can be executed with:

0 commit comments

Comments
 (0)