Live data from Hacker News

Starbase: SQLite on the Edge

starbasedb.com

11–20 of 49 posts

Re: Starbase: SQLite on the Edge

#11
post #2

This is pretty cool. Great artwork too. Building edge DBs on top of S3 or R2 had interested me for a long time. Thanks for writing it! Update: bug in redirection: https://starbasedb.com/blog/blog/blog/blog/blog/blog/develop...

+1. Love the cassette falling in place with the sound effect. Still don't know what it actually does though, but that is very satisfying.

Re: Starbase: SQLite on the Edge

#15

I don't really understand what this is offering beyond Cloudflare's recent release of running SQLite in durable objects: https://blog.cloudflare.com/sqlite-in-durable-objects/ . Is it about providing an external interface to Cloudflare's SQLite databases?

The project is open source (https://github.com/Brayden/starbasedb/blob/main/src/index.ts). Yes to it provides a way to update Cloudflare's SQLite with HTTP.

Re: Starbase: SQLite on the Edge

#18

I don't really understand what this is offering beyond Cloudflare's recent release of running SQLite in durable objects: https://blog.cloudflare.com/sqlite-in-durable-objects/ . Is it about providing an external interface to Cloudflare's SQLite databases?

Some day I really need to learn when to use sqlite in a durable object vs the eventually consistent one (r2).

Re: Starbase: SQLite on the Edge

#20
`Isolation. Due to the nature of our queue and query executions, everything is synchronous by nature so no two queries can be ran concurrently making them run in an isolated nature by default. Check.`

I'm not sure if I misunderstood something, but using a global queue/lock to enforce isolation properties seems to be just a little disingenuous for a dbms. It works, but it's odd to talk about isolation in a system with zero concurrency. It's like saying a bicycle gets infinite miles per gallon in fuel efficiency.

Post reply on HN