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/reference/faq.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@ Yes, you can use Workers KV outside of Workers by using the [REST API](/api/reso
19
19
20
20
When choosing how to access Workers KV, consider the following:
21
21
22
-
-**Performance**: Accessing KV via the [Workers Binding API](/kv/api/write-key-value-pairs) is generally faster than using the [REST API](/api/resources/kv/), as it avoids the overhead of HTTP requests.
23
-
-**Rate Limits**: Be aware of the different rate limits for each access method. The [REST API](/api/resources/kv/) has a lower write rate limit compared to the Workers Binding API. Refer to [What is KV's write rate limit?](/kv/reference/faq/#what-is-kvs-write-rate-limit)
22
+
-**Performance**: Accessing Workers KV via the [Workers Binding API](/kv/api/write-key-value-pairs/) is generally faster than using the [REST API](/api/resources/kv/), as it avoids the overhead of HTTP requests.
23
+
-**Rate Limits**: Be aware of the different rate limits for each access method. [REST API](/api/resources/kv/) has a lower write rate limit compared to Workers Binding API. Refer to [What is KV's write rate limit?](/kv/reference/faq/#what-is-the-rate-limit-of-workers-kv)
24
24
25
25
### Why can I not immediately see the updated value of a key-value pair?
26
26
@@ -39,13 +39,13 @@ Refer to [How KV works](/kv/concepts/how-kv-works/).
39
39
No. A bulk request to Workers KV, regardless of the amount of keys included in the request, will count as a single operation. For example, you could make
40
40
500 bulk KV requests and 500 R2 requests for a total of 1000 operations.
41
41
42
-
### What is KV's write rate limit?
42
+
### What is the rate limit of Workers KV?
43
43
44
-
KV's write rate limit differs depending on the way you access it.
44
+
Workers KV's write rate limit differs depending on the way you access it.
45
45
46
-
When writing to KV via the [REST API](/api/resources/kv/), the write rate limit is 1,200 writes per 5 minutes. The same [limits of the REST API](/fundamentals/api/reference/limits/) applies.
46
+
When writing to Workers KV via the [REST API](/api/resources/kv/), the write rate limit is 1,200 writes per 5 minutes. The same [limits of the REST API](/fundamentals/api/reference/limits/) applies.
47
47
48
-
When writing to KV via the [Workers Binding API](/kv/api/write-key-value-pairs/), the write rate limit is 1 write per second, per key, unlimited across KV keys.
48
+
When writing to Workers KV via the [Workers Binding API](/kv/api/write-key-value-pairs/), the write rate limit is 1 write per second, per key, unlimited across KV keys.
0 commit comments