A new Rules of Durable Objects guide is now available, providing opinionated best practices for building effective Durable Objects applications. This guide covers design patterns, storage strategies, concurrency, and common anti-patterns to avoid.
Key guidance includes:
- Design around your “atom” of coordination — Create one Durable Object per logical unit (chat room, game session, user) instead of a global singleton that becomes a bottleneck.
- Use SQLite storage with RPC methods — SQLite-backed Durable Objects with typed RPC methods provide the best developer experience and performance.
- Understand input and output gates — Learn how Cloudflare’s runtime prevents data races by default, how write coalescing works, and when to use
blockConcurrencyWhile(). - Leverage Hibernatable WebSockets — Reduce costs for real-time applications by allowing Durable Objects to sleep while maintaining WebSocket connections.
The testing documentation has also been updated with modern patterns using @cloudflare/vitest-pool-workers, including examples for testing SQLite storage, alarms, and direct instance access:
JavaScript
import { env, runDurableObjectAlarm } from "cloudflare:test";import { it, expect } from "vitest";it("can test Durable Objects with isolated storage", async () => {const stub = env.COUNTER.getByName("test");// Call RPC methods directly on the stubawait stub.increment();expect(await stub.getCount()).toBe(1);// Trigger alarms immediately without waitingawait runDurableObjectAlarm(stub);});TypeScript
import { env, runDurableObjectAlarm } from "cloudflare:test";import { it, expect } from "vitest";it("can test Durable Objects with isolated storage", async () => {const stub = env.COUNTER.getByName("test");// Call RPC methods directly on the stubawait stub.increment();expect(await stub.getCount()).toBe(1);// Trigger alarms immediately without waitingawait runDurableObjectAlarm(stub);});
Source: Cloudflare
Latest Posts
- Find your files quickly and easily on Word, Excel and PowerPoint App home pages [MC1249435]
![Find your files quickly and easily on Word, Excel and PowerPoint App home pages [MC1249435] 2 pexels e l 296481171 14209547](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)
- Retirement of the Semi-Annual Enterprise Channel option in the Office Deployment Service [MC1249427]
![Retirement of the Semi-Annual Enterprise Channel option in the Office Deployment Service [MC1249427] 3 pexels jeshoots 234527](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)
- Microsoft Purview compliance portal: Data Security Investigations introduces new soft purge mitigation action [MC1249429]
![Microsoft Purview compliance portal: Data Security Investigations introduces new soft purge mitigation action [MC1249429] 4 pexels kinkate 368260](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)
- Microsoft Teams: Live transcription in Teams Rooms on Android [MC1249432]
![Microsoft Teams: Live transcription in Teams Rooms on Android [MC1249432] 5 pexels magda ehlers pexels 613431](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==)

![Find your files quickly and easily on Word, Excel and PowerPoint App home pages [MC1249435] 2 pexels e l 296481171 14209547](https://mwpro.co.uk/wp-content/uploads/2025/06/pexels-e-l-296481171-14209547-150x150.webp)
![Retirement of the Semi-Annual Enterprise Channel option in the Office Deployment Service [MC1249427] 3 pexels jeshoots 234527](https://mwpro.co.uk/wp-content/uploads/2024/08/pexels-jeshoots-234527-150x150.webp)
![Microsoft Purview compliance portal: Data Security Investigations introduces new soft purge mitigation action [MC1249429] 4 pexels kinkate 368260](https://mwpro.co.uk/wp-content/uploads/2024/08/pexels-kinkate-368260-150x150.webp)
![Microsoft Teams: Live transcription in Teams Rooms on Android [MC1249432] 5 pexels magda ehlers pexels 613431](https://mwpro.co.uk/wp-content/uploads/2024/08/pexels-magda-ehlers-pexels-613431-150x150.webp)
