Posts

Showing posts with the label Serverless

Cloudflare Is Trying to Make AI-Built Apps Less Disposable

AI-generated apps have had an awkward little secret: they are pretty good at producing disposable interfaces, but the moment you want one to remember anything, the infrastructure starts looking like a junk drawer. Cloudflare's new Durable Object Facets are interesting because they attack exactly that problem. Dynamic Workers already let developers run generated code inside lightweight isolates instead of heavier container-style setups, which is why Cloudflare keeps stressing the speed and memory advantage. The new piece is persistence. A platform can now let AI-written code run as a facet inside a supervised Durable Object, with its own SQLite-backed storage attached locally to that object. In plain English, each tiny generated app can get a small brain and a memory without the platform owner handing over the keys to a giant database buffet. That detail matters more than the demo-friendly phrase "give each app its own database" suggests. The clever part is not just storag...

Temporal Just Made Durable Execution Serverless, and That Changes Who Gets to Use It

Durable execution platforms have been one of those infrastructure patterns that sound amazing in whiteboard sessions — guaranteed workflow completion, automatic retries, state rebuilt after crashes — and then you look at the operational overhead and remember why your team is still running cron jobs in a tmux session and praying the network doesn't hiccup. Temporal's announcement at Replay 2026 this week takes a real swing at that problem: Serverless Workers that deploy to AWS Lambda and spin up only when there's actual work to do. The shift is subtle but important. Until now, running Temporal Workers meant keeping long-lived processes listening on task queues, which works fine if you've already budgeted for always-on compute but gets awkward fast when your workload is bursty, seasonal, or still small enough that a dedicated Worker pod feels like overkill. You end up in the uncanny valley between "too important for a raw Lambda" and "too sporadic for a p...

Cloudflare Is Trying to Make AI-Built Apps Less Disposable

AI-generated apps have had an awkward little secret: they are pretty good at producing disposable interfaces, but the moment you want one to remember anything, the infrastructure starts looking like a junk drawer. Cloudflare's new Durable Object Facets are interesting because they attack exactly that problem. Dynamic Workers already let developers run generated code inside lightweight isolates instead of heavier container-style setups, which is why Cloudflare keeps stressing the speed and memory advantage. The new piece is persistence. A platform can now let AI-written code run as a facet inside a supervised Durable Object, with its own SQLite-backed storage attached locally to that object. In plain English, each tiny generated app can get a small brain and a memory without the platform owner handing over the keys to a giant database buffet. That detail matters more than the demo-friendly phrase "give each app its own database" suggests. The clever part is not just storag...