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
Copy file name to clipboardExpand all lines: src/content/docs/kv/index.mdx
+38-12Lines changed: 38 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,8 @@ import {
13
13
Plan,
14
14
RelatedProduct,
15
15
Tabs,
16
-
TabItem
16
+
TabItem,
17
+
LinkButton
17
18
} from"~/components";
18
19
19
20
<Description>
@@ -28,41 +29,64 @@ Create a global, low-latency, key-value data storage.
28
29
29
30
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.
30
31
32
+
For example, you can use Workers KV for:
33
+
34
+
- Caching API responses.
35
+
- Storing user configurations / preferences.
36
+
- Storing user authentication details.
37
+
31
38
Workers KV is ideal for projects that require:
32
39
33
40
- High volumes of reads and/or repeated reads to the same keys.
0 commit comments