Replies: 1 comment 4 replies
-
It could be interesting to combine Litestream & the sql.js/VFS approach from the article. Litestream backs up WAL frames which just represent pages in the main database file. If Litestream wrote up a small metadata file mapping WAL frames to pages then you could run transactional queries against a live, streaming back up on a CDN. 🤔 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here is hacker news link which explains how to host SQLite databases on GitHub Pages or any CDN.
https://news.ycombinator.com/item?id=27016630
Write
LiteStream --> S3
Read
S3 --> Browser
In effect, we need AppServer only for writes.
For reads, we don't need anything just CDN
Beta Was this translation helpful? Give feedback.
All reactions