0PricingLogin
Edge Computing with Cloudflare Workers & Deno · Lesson

Cloudflare KV Store

Utilize Cloudflare Workers KV for key-value storage at the edge, ideal for caching and configuration.

Edge Data with KV Store

Welcome to Cloudflare KV! It's a highly distributed key-value store that runs on Cloudflare's global network, right at the edge.

This means your data is stored incredibly close to your users, leading to extremely fast access and low latency. It's perfect for dynamic content, configuration, and caching.

How Key-Value Works

A key-value store is like a simple dictionary or map. You store data as unique key-value pairs. The key is a unique identifier (a string), and the value is the data associated with that key.

  • Keys: Think of them as unique names, like "user_id_123" or "website_config".
  • Values: These are the actual data, which can be strings, numbers, JSON objects (as strings), or even binary data.

All lessons in this course

  1. Cloudflare KV Store
  2. Durable Objects Explained
  3. Integrating Deno with Edge Storage
  4. Querying with D1 SQL at the Edge
← Back to Edge Computing with Cloudflare Workers & Deno