I'm also pretty sure DOs can be cheaper if you are doing CPU intensive workloads
I'm also pretty sure DOs can be cheaper if you are doing CPU intensive workloads


Are there any plans for read replicas for DOs?Yes, once D1 read replication is Generally Available, we will open up replicas for DOs too (or around that time), since the underlying infrastructure is the same. D1 read replication uses DO read replicas.

wrangler config file in the project to have the binding.Deletes are counted as rows written.deleteAll()ProxyReadTimeoutimport { DurableObject } from 'cloudflare:workers';
export class Aggregator extends DurableObject { /* ... */ }
export default { async fetch() { /* ... */ } }// Export Durable Object
export { MyDurable } from './durables/MyDurable.js'; "durable_objects": {
"bindings": [
{
"name": "MY_DURABLE",
"class_name": "MyDurable"
}
]