Skip to content

Commit 484f9c7

Browse files
authored
PCX Review
1 parent 059630e commit 484f9c7

File tree

1 file changed

+6
-6
lines changed
  • src/content/docs/kv/reference

1 file changed

+6
-6
lines changed

src/content/docs/kv/reference/faq.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Yes, you can use Workers KV outside of Workers by using the [REST API](/api/reso
1919

2020
When choosing how to access Workers KV, consider the following:
2121

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)
2424

2525
### Why can I not immediately see the updated value of a key-value pair?
2626

@@ -39,13 +39,13 @@ Refer to [How KV works](/kv/concepts/how-kv-works/).
3939
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
4040
500 bulk KV requests and 500 R2 requests for a total of 1000 operations.
4141

42-
### What is KV's write rate limit?
42+
### What is the rate limit of Workers KV?
4343

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.
4545

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.
4747

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.
4949

5050
## Pricing
5151

0 commit comments

Comments
 (0)