How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Durable Objects, Workers - New Durable Object namespaces must use the SQLite storage backend

calendar_today July 9, 2026 domain cloudflare

If your account does not already have a key-value (KV) backed Durable Object namespace, you can no longer create new ones. New Durable Object namespaces must use the SQLite storage backend , which has been recommended for all new Durable Objects since it became generally available in 2024. Create a new class with a new_sqlite_classes migration: wrangler.jsonc { “ $schema “ : “./node_modules/wrangler/config-schema.json” , “ migrations “ : [ { “ tag “ : “v1” , “ new_sqlite_classes “ : [ “MyDurableObject” ] } ] } wrangler.toml [[ migrations ]] tag = “v1” new_sqlite_classes = [ “MyDurableObject” ]

open_in_new Read original post