|
|
|
|
|
by spwa4
178 days ago
|
|
This is so weird. If you're using this library 1) your serverless and edge runtime needs to have internet access, so it can contact anyone 2) you're obviously not going to be able to efficiently write to S3 while providing guarantees, so it'll be expensive 3) you're writing in rust, so you really care about correctness and efficiency This seems like a contradiction. Why would you do this as opposed to hosting a redundant postgres on 2 Hetzner/OVH/... servers and writing to that? |
|
What's shifting is workloads. More and more compute runs in short-lived sandboxes: WASM runtimes (browser, edge), Firecracker, etc. These are edge environments, but not just for web applications.
We're exploring a different architecture for these workloads: ephemeral, stateless compute with storage treated as a format rather than a service.
This also maps to how many AI agent service want per-user or per-workspace isolation at large scale, without operating millions of always-on database servers.
If you're happy running a long-lived Postgres service, Neon or Supabase are great choices.