Skip to content

Commit ea9a308

Browse files
committed
docs(connection-pooling): Fix emoji, and clean up links
1 parent 2dde239 commit ea9a308

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/docs/connection-pooling.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Scale your serverless functions
44

55
# Connection Pooling
66

7-
> **Work in Progress** ⚠️
7+
> **Work in Progress** ⚠️
88
>
9-
> There's more to document here. In the meantime, you can check our [community forum](https://community.redwoodjs.com/search?q=connection%20pooling) for answers.
9+
> There's more to document here. In the meantime, you can check the [Redwood community forums](https://community.redwoodjs.com/search?q=connection%20pooling) for answers.
1010
>
1111
> Want to contribute? CedarJS welcomes contributions and loves helping people become contributors.
1212
> You can edit this doc [here](https://github.com/cedarjs/cedarjs.com/blob/main/docs/connectionPooling.md).
@@ -29,7 +29,7 @@ In a Serverless environment, each function connects directly to the database, wh
2929

3030
### Prisma Postgres
3131

32-
[Prisma Postgres](https://www.prisma.io/docs/postgres/introduction/overview?utm_source=cedarjs_docs&utm_medium=docs) is a managed PostgreSQL database service that includes:
32+
[Prisma Postgres](https://www.prisma.io/docs/postgres/introduction/overview) is a managed PostgreSQL database service that includes:
3333

3434
- **Built-in connection pooling**: No need to configure external pooling services
3535
- **Global caching**: Query-level caching with TTL and Stale-While-Revalidate strategies
@@ -38,11 +38,11 @@ In a Serverless environment, each function connects directly to the database, wh
3838

3939
Prisma Postgres supports schema migrations and queries via Prisma ORM, and automatically handles connection pooling and caching.
4040

41-
To get started with Prisma Postgres, visit the [Prisma Postgres documentation](https://www.prisma.io/docs/postgres/introduction/overview?utm_source=cedarjs_docs&utm_medium=docs).
41+
To get started with Prisma Postgres, visit the [Prisma Postgres documentation](https://www.prisma.io/docs/postgres/introduction/overview).
4242

4343
#### Local Prisma Postgres
4444

45-
For local development, you can use [local Prisma Postgres](https://www.prisma.io/docs/postgres/database/local-development?utm_source=cedarjs_docs&utm_medium=docs) which runs a PostgreSQL-compatible database locally. This eliminates the need to install and manage PostgreSQL locally while maintaining full compatibility with production PostgreSQL databases.
45+
For local development, you can use [local Prisma Postgres](https://www.prisma.io/docs/postgres/database/local-development) which runs a PostgreSQL-compatible database locally. This eliminates the need to install and manage PostgreSQL locally while maintaining full compatibility with production PostgreSQL databases.
4646

4747
:::note
4848

@@ -77,7 +77,7 @@ Keep the server running while performing migrations and using the database for l
7777

7878
#### Temporary Prisma Postgres database
7979

80-
For quick testing or prototyping, [Prisma Postgres](https://www.prisma.io/postgres) offers temporary production-ready databases that also requires no setup or accounts. Use [`npx create-db`](https://www.prisma.io/docs/postgres/introduction/npx-create-db?utm_source=cedarjs_docs&utm_medium=docs) to create a database that's automatically deleted after 24 hours:
80+
For quick testing or prototyping, [Prisma Postgres](https://www.prisma.io/postgres) offers temporary production-ready databases that also requires no setup or accounts. Use [`npx create-db`](https://www.prisma.io/docs/postgres/introduction/npx-create-db) to create a database that's automatically deleted after 24 hours:
8181

8282
```bash
8383
npx create-db@latest

docs/versioned_docs/version-0.11/connection-pooling.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Scale your serverless functions
44

55
# Connection Pooling
66

7-
> **Work in Progress** ⚠️
7+
> **Work in Progress** ⚠️
88
>
9-
> There's more to document here. In the meantime, you can check our [community forum](https://community.redwoodjs.com/search?q=connection%20pooling) for answers.
9+
> There's more to document here. In the meantime, you can check the [Redwood community forums](https://community.redwoodjs.com/search?q=connection%20pooling) for answers.
1010
>
1111
> Want to contribute? CedarJS welcomes contributions and loves helping people become contributors.
1212
> You can edit this doc [here](https://github.com/cedarjs/cedarjs.com/blob/main/docs/connectionPooling.md).
@@ -29,7 +29,7 @@ In a Serverless environment, each function connects directly to the database, wh
2929

3030
### Prisma Postgres
3131

32-
[Prisma Postgres](https://www.prisma.io/docs/postgres/introduction/overview?utm_source=cedarjs_docs&utm_medium=docs) is a managed PostgreSQL database service that includes:
32+
[Prisma Postgres](https://www.prisma.io/docs/postgres/introduction/overview) is a managed PostgreSQL database service that includes:
3333

3434
- **Built-in connection pooling**: No need to configure external pooling services
3535
- **Global caching**: Query-level caching with TTL and Stale-While-Revalidate strategies
@@ -38,11 +38,11 @@ In a Serverless environment, each function connects directly to the database, wh
3838

3939
Prisma Postgres supports schema migrations and queries via Prisma ORM, and automatically handles connection pooling and caching.
4040

41-
To get started with Prisma Postgres, visit the [Prisma Postgres documentation](https://www.prisma.io/docs/postgres/introduction/overview?utm_source=cedarjs_docs&utm_medium=docs).
41+
To get started with Prisma Postgres, visit the [Prisma Postgres documentation](https://www.prisma.io/docs/postgres/introduction/overview).
4242

4343
#### Local Prisma Postgres
4444

45-
For local development, you can use [local Prisma Postgres](https://www.prisma.io/docs/postgres/database/local-development?utm_source=cedarjs_docs&utm_medium=docs) which runs a PostgreSQL-compatible database locally. This eliminates the need to install and manage PostgreSQL locally while maintaining full compatibility with production PostgreSQL databases.
45+
For local development, you can use [local Prisma Postgres](https://www.prisma.io/docs/postgres/database/local-development) which runs a PostgreSQL-compatible database locally. This eliminates the need to install and manage PostgreSQL locally while maintaining full compatibility with production PostgreSQL databases.
4646

4747
:::note
4848

@@ -77,7 +77,7 @@ Keep the server running while performing migrations and using the database for l
7777

7878
#### Temporary Prisma Postgres database
7979

80-
For quick testing or prototyping, [Prisma Postgres](https://www.prisma.io/postgres) offers temporary production-ready databases that also requires no setup or accounts. Use [`npx create-db`](https://www.prisma.io/docs/postgres/introduction/npx-create-db?utm_source=cedarjs_docs&utm_medium=docs) to create a database that's automatically deleted after 24 hours:
80+
For quick testing or prototyping, [Prisma Postgres](https://www.prisma.io/postgres) offers temporary production-ready databases that also requires no setup or accounts. Use [`npx create-db`](https://www.prisma.io/docs/postgres/introduction/npx-create-db) to create a database that's automatically deleted after 24 hours:
8181

8282
```bash
8383
npx create-db@latest

0 commit comments

Comments
 (0)