You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -24,6 +17,92 @@ Create a global, low-latency, key-value data storage.
24
17
25
18
Workers KV is a data storage that allows you to store and retrieve data globally. With Workers KV, you can build dynamic and performant APIs and websites that support high read volumes with low latency.
26
19
20
+
For example, you can use Workers KV for:
21
+
22
+
- Caching API responses.
23
+
- Storing user configurations / preferences.
24
+
- Storing user authentication details.
25
+
26
+
Workers KV is ideal for projects that require:
27
+
28
+
- High volumes of reads and/or repeated reads to the same keys.
29
+
- Globally distributed data.
30
+
31
+
Access your Workers KV namespace from Cloudflare Workers using the Workers Binding API or from your external application using the REST API:
0 commit comments