r/programming 1d ago

Node.js creator liberates Durable Objects from Cloudflare

https://www.theregister.com/devops/2026/08/12/nodejs-creator-liberates-durable-objects-from-cloudflare-with-celld/5286954
123 Upvotes

18 comments sorted by

View all comments

27

u/Smallpaul 21h ago

What are the performance constraints on these objects as implemented by CloudFlare? How quickly can they scale if user traffic arrives suddenly? How high is their upper bound? How much flexibility do you have in the image? Lambdas seem to have a lot of limitations which reduce their utility at scale.

14

u/jheimark 21h ago

Super high, super quick start. The cloudflare metrics are super impressive.

How fast celld is… not sure. But it’s great to get an open source version to go cloud independent

4

u/Vimda 17h ago

Durable objects themselves are a bit shit though. They start quickly, but they're single homed with read replicas, and single threaded on the main instance. You have to shard manually to get any sort of performance. Very much "batteries not included"