Skip to content

Commit 7202613

Browse files
committed
Replacing internal links, setting up redirect.
1 parent 2301d29 commit 7202613

File tree

11 files changed

+16
-15
lines changed

11 files changed

+16
-15
lines changed

public/_redirects

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,8 @@
16791679

16801680
# hyperdrive
16811681

1682-
/hyperdrive/learning/how-hyperdrive-works/ /hyperdrive/configuration/how-hyperdrive-works/ 301
1682+
/hyperdrive/key-concepts/how-hyperdrive-works/ /hyperdrive/key-concepts/how-hyperdrive-works/ 301
1683+
/hyperdrive/learning/how-hyperdrive-works/ /hyperdrive/key-concepts/how-hyperdrive-works/ 301
16831684
/hyperdrive/learning/connect-to-postgres/ /hyperdrive/configuration/connect-to-postgres/ 301
16841685
/hyperdrive/learning/query-caching/ /hyperdrive/configuration/query-caching/ 301
16851686
/hyperdrive/learning/troubleshooting/ /hyperdrive/reference/troubleshooting/ 301

src/content/changelog/hyperdrive/2024-12-11-hyperdrive-caching-at-edge.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ _P50, P75, and P90 Hyperdrive session latency for all client connection sessions
1818

1919
This performance improvement is applied to all new and existing Hyperdrive configurations that have caching enabled.
2020

21-
For more details on how Hyperdrive performs query caching, refer to the [Hyperdrive documentation](/hyperdrive/configuration/how-hyperdrive-works/#query-caching).
21+
For more details on how Hyperdrive performs query caching, refer to the [Hyperdrive documentation](/hyperdrive/key-concepts/how-hyperdrive-works/#query-caching).

src/content/changelog/hyperdrive/2025-03-04-hyperdrive-pooling-near-database-and-ip-range-egress.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ By improving placement of Hyperdrive database connection pools, Workers' Smart P
1414

1515
With this update, Hyperdrive also uses [Cloudflare's standard IP address ranges](https://www.cloudflare.com/ips/) to connect to your database. This enables you to configure the firewall policies (IP access control lists) of your database to only allow access from Cloudflare and Hyperdrive.
1616

17-
Refer to [documentation on how Hyperdrive makes connecting to regional databases from Cloudflare Workers fast](/hyperdrive/configuration/how-hyperdrive-works/).
17+
Refer to [documentation on how Hyperdrive makes connecting to regional databases from Cloudflare Workers fast](/hyperdrive/key-concepts/how-hyperdrive-works/).
1818

1919
This improvement is enabled on all Hyperdrive configurations.

src/content/docs/hyperdrive/configuration/local-development.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,5 +94,5 @@ Refer to the [`wrangler dev` documentation](/workers/wrangler/commands/#dev) to
9494
## Related resources
9595

9696
- Use [`wrangler dev`](/workers/wrangler/commands/#dev) to run your Worker and Hyperdrive locally and debug issues before deploying.
97-
- Learn [how Hyperdrive works](/hyperdrive/configuration/how-hyperdrive-works/).
97+
- Learn [how Hyperdrive works](/hyperdrive/key-concepts/how-hyperdrive-works/).
9898
- Understand how to [configure query caching in Hyperdrive](/hyperdrive/configuration/query-caching/).

src/content/docs/hyperdrive/configuration/query-caching.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ const noCachingClient = new Client({
7373

7474
## Next steps
7575

76-
- Learn more about [How Hyperdrive works](/hyperdrive/configuration/how-hyperdrive-works/).
76+
- Learn more about [How Hyperdrive works](/hyperdrive/key-concepts/how-hyperdrive-works/).
7777
- Learn how to [Connect to PostgreSQL](/hyperdrive/configuration/connect-to-postgres/) from Hyperdrive.
7878
- Review [Troubleshooting common issues](/hyperdrive/observability/troubleshooting/) when connecting a database to Hyperdrive.

src/content/docs/hyperdrive/get-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ By finishing this tutorial, you have created a Hyperdrive configuration, a Worke
250250

251251
## Next steps
252252

253-
- Learn more about [how Hyperdrive works](/hyperdrive/configuration/how-hyperdrive-works/).
253+
- Learn more about [how Hyperdrive works](/hyperdrive/key-concepts/how-hyperdrive-works/).
254254
- How to [configure query caching](/hyperdrive/configuration/query-caching/).
255255
- [Troubleshooting common issues](/hyperdrive/observability/troubleshooting/) when connecting a database to Hyperdrive.
256256

src/content/docs/hyperdrive/platform/pricing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar:
88

99
**Hyperdrive is free and included in every [Workers Paid](/workers/platform/pricing/#workers) plan**.
1010

11-
Hyperdrive is automatically enabled when subscribed to a Workers Paid plan, and does not require you to pay any additional fees to use. Hyperdrive's [connection pooling and query caching](/hyperdrive/configuration/how-hyperdrive-works/) do not incur any additional charges, and there are no hidden limits other than those [published](/hyperdrive/platform/limits/).
11+
Hyperdrive is automatically enabled when subscribed to a Workers Paid plan, and does not require you to pay any additional fees to use. Hyperdrive's [connection pooling and query caching](/hyperdrive/key-concepts/how-hyperdrive-works/) do not incur any additional charges, and there are no hidden limits other than those [published](/hyperdrive/platform/limits/).
1212

1313
:::note
1414

src/content/docs/hyperdrive/tutorials/serverless-timeseries-api-with-timescale/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,6 @@ In this tutorial, you have learned how to create a working example to ingest and
286286

287287
## Next steps
288288

289-
- Learn more about [How Hyperdrive Works](/hyperdrive/configuration/how-hyperdrive-works/).
289+
- Learn more about [How Hyperdrive Works](/hyperdrive/key-concepts/how-hyperdrive-works/).
290290
- Learn more about [Timescale](https://timescale.com).
291291
- Refer to the [troubleshooting guide](/hyperdrive/observability/troubleshooting/) to debug common issues.

src/content/docs/workers/platform/storage-options.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Hyperdrive allows you to:
168168
To get started with Hyperdrive:
169169

170170
- [Connect Hyperdrive](/hyperdrive/get-started/) to your existing database.
171-
- Learn more [about how Hyperdrive speeds up your database queries](/hyperdrive/configuration/how-hyperdrive-works/).
171+
- Learn more [about how Hyperdrive speeds up your database queries](/hyperdrive/key-concepts/how-hyperdrive-works/).
172172

173173
## Analytics Engine
174174

src/content/partials/hyperdrive/create-hyperdrive-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ export default {
102102

103103
## Next steps
104104

105-
- Learn more about [How Hyperdrive Works](/hyperdrive/configuration/how-hyperdrive-works/).
105+
- Learn more about [How Hyperdrive Works](/hyperdrive/key-concepts/how-hyperdrive-works/).
106106
- Refer to the [troubleshooting guide](/hyperdrive/observability/troubleshooting/) to debug common issues.
107107
- Understand more about other [storage options](/workers/platform/storage-options/) available to Cloudflare Workers.

0 commit comments

Comments
 (0)