Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ Prisma Postgres supports connection pooling through [TCP connections](#connectio
TCP connection pooling is currently in [Early Access](/console/more/feature-maturity#early-access).
:::

To use a pooled connection, append `&pooled=true` to your Prisma Postgres TCP connection string:
To use a pooled connection, append `&pool=true` to your Prisma Postgres TCP connection string:

```bash
# Direct connection (no pooling)
DATABASE_URL="postgres://USER:PASSWORD@db.prisma.io:5432/?sslmode=require"

# Pooled connection
DATABASE_URL="postgres://USER:PASSWORD@db.prisma.io:5432/?sslmode=require&pooled=true"
DATABASE_URL="postgres://USER:PASSWORD@db.prisma.io:5432/?sslmode=require&pool=true"
```

You can also enable connection pooling when generating your connection string in the [Prisma Console](https://console.prisma.io) by toggling on the **pooling** option.
Expand Down
Loading