Skip to content

SYSTEM Cited by 6 sources

Cloudflare Workers KV

Workers KV is Cloudflare's edge-distributed, eventually-consistent key-value store exposed as a first-class Workers binding (developers.cloudflare.com/kv). Reads are served from cache at Cloudflare edge POPs; writes propagate globally.

Role

  • Low-latency read path for small values (config, feature flags, tokens, pre-computed content).
  • Eventually consistent: writes visible globally in seconds.
  • Binding-based access from Workers; no client-side KV driver.

Local / remote parity

KV is one of the binding types exposed through Local Explorer's local mirror of the Cloudflare API at /cdn-cgi/explorer/api, backed by local on-disk state managed by Miniflare (Source: sources/2026-04-13-cloudflare-building-a-cli-for-all-of-cloudflare). Local namespaces are GUI-introspectable, seedable, and callable through the same KV API shape as remote.

As auth-token store (Artifacts, 2026-04-16)

In Artifacts, KV is the auth-token-tracking store used by the front-end Worker on every Git request: the token embedded in the HTTPS URL / header is looked up in KV before the request is routed to the per-repo Durable Object. Sits alongside R2 (pack-file snapshots) and DO SQLite (hot git objects) in the Artifacts storage stratification. Canonical wiki instance of KV as the edge-replicated low-latency authn lookup tier in front of a per-unit DO. See patterns/do-backed-git-server.

Seen in

Last updated · 542 distilled / 1,571 read