What The Docs Mean In Practice
Cloudflare documentation says each individual object is single-threaded and has a soft limit around 1,000 requests per second, lower if the work is heavier. The same docs allow an unlimited number of separate objects in a namespace.
many rooms, users, or tenants = scales well
one giant global room = does not scale infinitely
What Hibernation Does And Does Not Change
hibernation helps:
- idle connection cost
- connection density
hibernation does not change:
- one object stays single-threaded
- same object does not become many replicas
So hibernation is not a horizontal scale-out feature for one object. It is a runtime and cost optimization around long-lived mostly idle connections.