| > I was surprised because Cloudflare’s central messaging is that their network is fast, and disappointed becuase I’m a happy user of their other products (domains, DNS, pages, and R2). I've glanced through D1's docs and I immediately noticed system traits like: - database stored in a single primary region where all writes need to go, - cold starts involve opening a connection to D1, - cache misses in local replicas involve fetching data back from the primary region, - D1 is built upon sqlite, which I think doesn't support write concurrency well. - D1 doesn't actively cache results from the primary region to the edge, so you'll have cache misses pretty frequently. Etc. These traits don't scream performance. |