I assume durable objects would also have limits regarding storage size. Does this suit well, if we w
I assume durable objects would also have limits regarding storage size. Does this suit well, if we want to have multi tentant data ?
When using Durable Objects, it's important to remember that they are intended to scale out, not up. A single object is inherently limited in throughput since it runs on a single thread of a single machine. To handle more traffic, you create more objects. This is easiest when different objects can handle different logical units of state (like different documents, different users, or different "shards" of a database), where each unit of state has low enough traffic to be handled by a single object.


