Replies: 1 comment 1 reply
-
@solracsf The read replica code has been removed from Litestream. It didn't quite fit Litestream very well so it's been moved to another project called LiteFS. As for performance, I don't think you'll see much benefit as SQLite handles locks between readers & writers really well when using the WAL journaling mode. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My question is, using the read-replica, is there any benefit (thinking about locking here) hosting both
write.db
andread.db
files (primary and ro-replica) on the same host and split connections using /path/to/read.db?mode=ro
? Or is it too much pain for little (no?) benefits?Goal here is not to achieve some HA setup but rather a "better" scaling single-node mode.
Beta Was this translation helpful? Give feedback.
All reactions