Skip to content

Edge runtime

Runtime characteristics of CepatEdge on Cloudflare Workers and Durable Objects.


Workers

AspectCharacteristic
EngineV8 (Workers runtime)
MemoryPer-request isolate limits (platform-defined)
CPU / wall timePlatform CPU and wall-time budgets per request
ModelIsolated execution per request
DistributionGlobal edge network

Durable Objects

AspectCharacteristic
StatePersistent across requests for a given object id
ConsistencyStrong within an object
StorageSQLite-backed DO storage
ScalingOne active instance per object id / namespace

Used for sessions, cache namespaces, and log shards — see cache and logs.


Configuration

  • Bindings: Workers env (DOs, R2, vars)
  • Secrets: Encrypted secrets (DB URL, JWT, mailer, OIDC, …)
  • Docs: Configuration guide · Domains

Performance envelope (targets)

PathTarget
Edge processing<10ms typical
Cache hits<5ms typical
DB (uncached)<50ms with pooling
Global user-perceived<100ms P95 where cache-first

Scaling is automatic at the edge; DO namespaces keep hot state without cold-start session loss for those objects.