Skip to content

Commit f444f82

Browse files
committed
Clarification improvements
1 parent 96f3250 commit f444f82

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/content/docs/kv/faq.mdx

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

2121
Workers KV heavily caches data across the Cloudflare network. Therefore, it is possible that you read a cached value for up to the cache TTL duration.
2222

23-
### Is KV eventually consistent or strongly consistent?
23+
### Is Workers KV eventually consistent or strongly consistent?
2424

25-
Workers KV stores data in central stores and replicates the data to all Cloudflare locations through a hybrid push/pull replication approach. This means that the previous value of the key-value pair may be seen in a location for as long as the cache TTL.
25+
Workers KV is eventually consistent.
2626

27-
This means that KV is eventually consistent.
27+
Workers KV stores data in central stores and replicates the data to all Cloudflare locations through a hybrid push/pull replication approach. This means that the previous value of the key-value pair may be seen in a location for as long as the cache TTL. This means that Workers KV is eventually consistent.
2828

2929
Refer to [How KV works](/kv/concepts/how-kv-works/).
3030

3131
## Pricing
3232

33-
### When writing via KV's [REST API](/api/resources/kv/subresources/namespaces/methods/bulk_update/), how are writes charged?
33+
### When writing via Workers KV's [REST API](/api/resources/kv/subresources/namespaces/methods/bulk_update/), how are writes charged?
3434

3535
Each key-value pair in the `PUT` request is counted as a single write, identical to how each call to `PUT` in the Workers API counts as a write. Writing 5,000 keys via the REST API incurs the same write costs as making 5,000 `PUT` calls in a Worker.
3636

3737
### Do queries I issue from the dashboard or wrangler (the CLI) count as billable usage?
3838

39-
Yes, any operations via the Cloudflare dashboard or wrangler, including updating (writing) keys, deleting keys, and listing the keys in a namespace count as billable KV usage.
39+
Yes, any operations via the Cloudflare dashboard or wrangler, including updating (writing) keys, deleting keys, and listing the keys in a namespace count as billable Workers KV usage.
4040

4141
### Does Workers KV charge for data transfer / egress?
4242

4343
No.
44-

0 commit comments

Comments
 (0)