Skip to content

Commit 7b3b387

Browse files
committed
KV -> Workers KV, only when referring to the product.
1 parent bc3d802 commit 7b3b387

File tree

75 files changed

+300
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+300
-300
lines changed

src/content/apps/index.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ entries:
7070
updated: 2024-06-17
7171
- link: https://github.com/craigsdennis/shorty-dot-dev
7272
name: shrty.dev
73-
description: A URL shortener that makes use of KV and Workers Analytics Engine. The admin interface uses Function Calling. Go Shorty!
73+
description: A URL shortener that makes use of Workers KV and Workers Analytics Engine. The admin interface uses Function Calling. Go Shorty!
7474
tags: [AI, Hono]
75-
products: [Workers AI, KV, Workers]
75+
products: [Workers AI, Workers KV, Workers]
7676
languages: [TypeScript]
7777
cloudflare: true
7878
updated: 2024-07-02
@@ -303,7 +303,7 @@ entries:
303303
updated: 2024-08-12
304304
- link: https://github.com/atinux/atinotes
305305
name: Atinotes
306-
description: Store Markdown notes in Cloudflare KV with this full-stack application made with Nuxt & deployed on Cloudflare Pages.
306+
description: Store Markdown notes in Cloudflare Workers KV with this full-stack application made with Nuxt & deployed on Cloudflare Pages.
307307
tags: [Nuxt]
308308
products: [Pages, Workers KV]
309309
languages: [TypeScript]

src/content/changelogs/kv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ entries:
2121
The unsuccessful keys are an array of keys that were not written successfully to all storage backends and therefore should be retried.
2222
2323
- publish_date: "2024-08-08"
24-
title: New KV Analytics API
24+
title: New Workers KV Analytics API
2525
description: |-
2626
2727
Workers KV now has a new [metrics dashboard](/kv/observability/metrics-analytics/#view-metrics-in-the-dashboard) and [analytics API](/kv/observability/metrics-analytics/#query-via-the-graphql-api) that leverages the [GraphQL Analytics API](/analytics/graphql-api/) used by many other Cloudflare products. The new analytics API provides per-account and per-namespace metrics for both operations and storage, including latency metrics for read and write operations to Workers KV.

src/content/docs/browser-rendering/get-started/screenshots.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ In your `browser-worker` directory, install Cloudflare’s [fork of Puppeteer](/
4141
npm install @cloudflare/puppeteer --save-dev
4242
```
4343

44-
## 3. Create a KV namespace
44+
## 3. Create a Workers KV namespace
4545

4646
Browser Rendering can be used with other developer products. You might need a [relational database](/d1/), an [R2 bucket](/r2/) to archive your crawled pages and assets, a [Durable Object](/durable-objects/) to keep your browser instance alive and share it with multiple requests, or [Queues](/queues/) to handle your jobs asynchronous.
4747

48-
For the purpose of this guide, you are going to use a [KV store](/kv/concepts/kv-namespaces/) to cache your screenshots.
48+
For the purpose of this guide, you are going to use a [Workers KV store](/kv/concepts/kv-namespaces/) to cache your screenshots.
4949

5050
Create two namespaces, one for production, and one for development.
5151

@@ -60,7 +60,7 @@ Take note of the IDs for the next step.
6060

6161
Configure your `browser-worker` project's [`wrangler.toml`](/workers/wrangler/configuration/) file by adding a browser [binding](/workers/runtime-apis/bindings/) and a [Node.js compatibility flag](/workers/configuration/compatibility-flags/#nodejs-compatibility-flag). Bindings allow your Workers to interact with resources on the Cloudflare developer platform. Your browser `binding` name is set by you, this guide uses the name `MYBROWSER`. Browser bindings allow for communication between a Worker and a headless browser which allows you to do actions such as taking a screenshot, generating a PDF and more.
6262

63-
Update your `wrangler.toml` configuration file with the Browser Rendering API binding and the KV namespaces you created:
63+
Update your `wrangler.toml` configuration file with the Browser Rendering API binding and the Workers KV namespaces you created:
6464

6565
```toml
6666
name = "browser-worker"
@@ -157,9 +157,9 @@ export default {
157157

158158
This Worker instantiates a browser using Puppeteer, opens a new page, navigates to what you put in the `"url"` parameter, takes a screenshot of the page, stores the screenshot in KV, closes the browser, and responds with the JPEG image of the screenshot.
159159

160-
If your Worker is running in production, it will store the screenshot to the production KV namespace. If you are running `wrangler dev`, it will store the screenshot to the dev KV namespace.
160+
If your Worker is running in production, it will store the screenshot to the production Workers KV namespace. If you are running `wrangler dev`, it will store the screenshot to the dev Workers KV namespace.
161161

162-
If the same `"url"` is requested again, it will use the cached version in KV instead, unless it expired.
162+
If the same `"url"` is requested again, it will use the cached version in Workers KV instead, unless it expired.
163163

164164
## 6. Test
165165

src/content/docs/cloudflare-one/policies/access/external-evaluation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You can set up External Evaluation rules using any API service, but to get start
4545
npx wrangler kv namespace create "KV"
4646
```
4747

48-
The command will output the binding name and KV namespace ID, for example
48+
The command will output the binding name and Workers KV namespace ID, for example
4949

5050
```txt
5151
[[kv_namespaces]]

src/content/docs/d1/platform/limits.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Limits for individual queries (listed above) apply to each individual statement
3333

3434
[^1]: The maximum storage per account can be increased by request on Workers Paid and Enterprise plans. See the guidance on limit increases on this page to request an increase.
3535

36-
[^2]: A single Worker script can have up to 1 MB of script metadata. A binding is defined as a binding to a resource, such as a D1 database, KV namespace, environmental variable or secret. Each resource binding is approximately 150-bytes, however environmental variables and secrets are controlled by the size of the value you provide. Excluding environmental variables, you can bind up to \~5,000 D1 databases to a single Worker script.
36+
[^2]: A single Worker script can have up to 1 MB of script metadata. A binding is defined as a binding to a resource, such as a D1 database, Workers KV namespace, environmental variable or secret. Each resource binding is approximately 150-bytes, however environmental variables and secrets are controlled by the size of the value you provide. Excluding environmental variables, you can bind up to \~5,000 D1 databases to a single Worker script.
3737

3838
[^3]: Requests to Cloudflare API must resolve in 30 seconds. Therefore, this duration limit also applies to the entire batch call.
3939

src/content/docs/d1/reference/community-projects.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Instead of running the `wrangler d1 execute` command in your terminal every time
8888

8989
### L1
9090

91-
`L1` is a package that brings some Cloudflare Worker ecosystem bindings into PHP and Laravel via the Cloudflare API. It provides interaction with D1 via PDO, KV and Queues, with more services to add in the future, making PHP integration with Cloudflare a real breeze.
91+
`L1` is a package that brings some Cloudflare Worker ecosystem bindings into PHP and Laravel via the Cloudflare API. It provides interaction with D1 via PDO, Workers KV and Queues, with more services to add in the future, making PHP integration with Cloudflare a real breeze.
9292

9393
* [GitHub](https://github.com/renoki-co/l1)
9494
* [Packagist](https://packagist.org/packages/renoki-co/l1)

src/content/docs/d1/tutorials/build-a-comments-api/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ You will now create a D1 database. In Wrangler v2, there is support for the `wra
8888
npx wrangler d1 create d1-example
8989
```
9090

91-
Reference your created database in your Worker code by creating a [binding](/workers/runtime-apis/bindings/) inside of your `wrangler.toml` file, Wrangler's configuration file. Bindings allow us to access Cloudflare resources, like D1 databases, KV namespaces, and R2 buckets, using a variable name in code. In `wrangler.toml`, set up the binding `DB` and connect it to the `database_name` and `database_id`:
91+
Reference your created database in your Worker code by creating a [binding](/workers/runtime-apis/bindings/) inside of your `wrangler.toml` file, Wrangler's configuration file. Bindings allow us to access Cloudflare resources, like D1 databases, Workers KV namespaces, and R2 buckets, using a variable name in code. In `wrangler.toml`, set up the binding `DB` and connect it to the `database_name` and `database_id`:
9292

9393
```toml
9494
[[ d1_databases ]]

src/content/docs/d1/tutorials/build-a-staff-directory-app/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ npx wrangler d1 create staff-directory
7070

7171
After creating your database, you will need to set up a [binding](/workers/runtime-apis/bindings/) in the Wrangler configuration file to integrate your database with your application.
7272

73-
This binding enables your application to interact with Cloudflare resources such as D1 databases, KV namespaces, and R2 buckets. To configure this, create a `wrangler.toml` file in your project's root directory and input the basic setup information:
73+
This binding enables your application to interact with Cloudflare resources such as D1 databases, Workers KV namespaces, and R2 buckets. To configure this, create a `wrangler.toml` file in your project's root directory and input the basic setup information:
7474

7575
```toml
7676
name = "staff-directory"

src/content/docs/durable-objects/examples/use-kv-from-durable-objects.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ sidebar:
66
order: 20
77
head:
88
- tag: title
9-
content: Durable Objects - Use KV within Durable Objects
10-
description: Read and write to/from KV within a Durable Object
9+
content: Durable Objects - Use Workers KV within Durable Objects
10+
description: Read and write to/from Workers KV within a Durable Object
1111

1212
---
1313

@@ -17,7 +17,7 @@ The following Worker script shows you how to configure a <GlossaryTooltip term="
1717

1818
Prerequisites:
1919

20-
* A [KV namespace](/kv/api/) created via the Cloudflare dashboard or the [wrangler CLI](/workers/wrangler/install-and-update/).
20+
* A [Workers KV namespace](/kv/api/) created via the Cloudflare dashboard or the [wrangler CLI](/workers/wrangler/install-and-update/).
2121
* A [configured binding](/kv/concepts/kv-bindings/) for the `kv_namespace` in the Cloudflare dashboard or `wrangler.toml` file.
2222
* A [Durable Object namespace binding](/workers/wrangler/configuration/#durable-objects).
2323

src/content/docs/email-routing/email-workers/runtime-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656

5757
* `env` object
5858

59-
* An object containing the bindings associated with your Worker using ES modules format, such as KV namespaces and Durable Objects.
59+
* An object containing the bindings associated with your Worker using ES modules format, such as Workers KV namespaces and Durable Objects.
6060

6161
* `ctx` object
6262
* An object containing the context associated with your Worker using ES modules format. Currently, this object just contains the `waitUntil` function.

0 commit comments

Comments
 (0)