Skip to content

Commit 58851f6

Browse files
committed
Moving up all the headers by 1.
1 parent 9ec173d commit 58851f6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/content/docs/kv/faq.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,35 @@ import { Glossary } from "~/components"
1010

1111
Frequently asked questions regarding Workers KV.
1212

13-
### General
13+
## General
1414

15-
#### Can I use Workers KV without using Workers?
15+
### Can I use Workers KV without using Workers?
1616

1717
Yes, you can use Workers KV outside of Workers by using the [REST API](/api/resources/kv/) or the associated Cloudflare SDKs for the REST API. It is important to note the [limits of the REST API](/fundamentals/api/reference/limits/) that apply.
1818

19-
#### Why can I not immediately see the updated value of a key-value pair?
19+
### Why can I not immediately see the updated value of a key-value pair?
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 KV eventually consistent or strongly consistent?
2424

2525
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.
2626

2727
This means that KV is eventually consistent.
2828

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

31-
### Pricing
31+
## 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 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

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

3939
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.
4040

41-
#### Does Workers KV charge for data transfer / egress?
41+
### Does Workers KV charge for data transfer / egress?
4242

4343
No.
4444

0 commit comments

Comments
 (0)