npx prisma@latest init --db
📚 http://pris.ly/t/get-started
💬 http://pris.ly/t/discord
This release introduces a new caching layer to speed up query execution. We’ve been testing and measuring it internally for a while now, and it’s ready to ship.
If you’re running Prisma ORM in production, upgrade today!
Full details in the changelog:
pris.ly/q9ckZ2x
This release introduces a new caching layer to speed up query execution. We’ve been testing and measuring it internally for a while now, and it’s ready to ship.
If you’re running Prisma ORM in production, upgrade today!
Full details in the changelog:
pris.ly/q9ckZ2x
Use findUniqueOrThrow().
It cleans up your code by automatically throwing a Prisma.NotFoundError when nothing is found.
Use findUniqueOrThrow().
It cleans up your code by automatically throwing a Prisma.NotFoundError when nothing is found.
Create projects, databases, and connections programmatically, then ship.
Create projects, databases, and connections programmatically, then ship.
“Upgrading to Prisma v7 and getting `Can't resolve ./enums.js` when importing from a custom client path?”
It usually means the client wasn’t regenerated after the upgrade.
“Upgrading to Prisma v7 and getting `Can't resolve ./enums.js` when importing from a custom client path?”
It usually means the client wasn’t regenerated after the upgrade.
We've been big fans of the new Deno Deploy, and even have a guide folks looking to deploy their backends with Deno!
bsky.app/profile/den...
pris.ly/deno-deploy
We've been big fans of the new Deno Deploy, and even have a guide folks looking to deploy their backends with Deno!
bsky.app/profile/den...
pris.ly/deno-deploy
Always humbling. Thanks for trying it 🫶
Always humbling. Thanks for trying it 🫶
Instead of burning your own tokens, use Ask AI in the Prisma docs.
It answers straight from the official documentation 🙌
- No hallucinations
- Unlimited and 100% Free.
Quick live demo 👇
pris.ly/y/ask-ai-demo
Instead of burning your own tokens, use Ask AI in the Prisma docs.
It answers straight from the official documentation 🙌
- No hallucinations
- Unlimited and 100% Free.
Quick live demo 👇
pris.ly/y/ask-ai-demo
But it still needs to be said again in 2026 👇
But it still needs to be said again in 2026 👇
Honestly grateful to everyone using it, sharing feedback, and building with it. Thank you ❤️
Honestly grateful to everyone using it, sharing feedback, and building with it. Thank you ❤️
No sign-up, no config, no waiting. You get a connection string, 24 hours to build, and the option to claim it for free if you want to keep it.
No sign-up, no config, no waiting. You get a connection string, 24 hours to build, and the option to claim it for free if you want to keep it.
Coming soon.
Coming soon.
What’s the recommended approach for Prisma ORM generated files?
What’s the recommended approach for Prisma ORM generated files?
30B MoE running ~43 tokens/sec on an Apple M5.
Local LLMs are getting very real.
We shared a full walkthrough for building a local AI SaaS 👇
pris.ly/y/typefully...
30B MoE running ~43 tokens/sec on an Apple M5.
Local LLMs are getting very real.
We shared a full walkthrough for building a local AI SaaS 👇
pris.ly/y/typefully...
Prisma ORM includes all fields by default.
Switching to select only what you need, can lead to major improvements in high traffic applications.
Prisma ORM includes all fields by default.
Switching to select only what you need, can lead to major improvements in high traffic applications.
Prisma Optimize surfaces real query latency, variance, and hidden costs like cold connections. It runs in dev so you can catch issues early before they hit prod.
See what's slowing things down, and why.
pris.ly/docs/optimize
Prisma Optimize surfaces real query latency, variance, and hidden costs like cold connections. It runs in dev so you can catch issues early before they hit prod.
See what's slowing things down, and why.
pris.ly/docs/optimize
So we made a video about it, check it out👇
pris.ly/y/prisma-su...
So we made a video about it, check it out👇
pris.ly/y/prisma-su...
We put together a complete Prisma walkthrough 👇
pris.ly/d/neon-pooling
We put together a complete Prisma walkthrough 👇
pris.ly/d/neon-pooling
What would make it a better space for you?
- Different channels or categories?
- Specific event formats?
- Bot functionalities?
We'd appreciate your thoughts. 🤗
What would make it a better space for you?
- Different channels or categories?
- Specific event formats?
- Bot functionalities?
We'd appreciate your thoughts. 🤗
→ Manage projects, databases & connections as code
→ Direct Postgres access out of the box
→ Multi-region deployments (US, EU, Asia)
→ Connection strings as secure Terraform outputs
`terraform apply` and you're live.
→ Manage projects, databases & connections as code
→ Direct Postgres access out of the box
→ Multi-region deployments (US, EU, Asia)
→ Connection strings as secure Terraform outputs
`terraform apply` and you're live.
- Generate a token in Prisma Console
- Add it to your headers
- Make secure API calls instantly
Full instructions here👇
pris.ly/mgmt-api-yaak
- Generate a token in Prisma Console
- Add it to your headers
- Make secure API calls instantly
Full instructions here👇
pris.ly/mgmt-api-yaak
✅ New compilerBuild option: fast (default) or small
⚡ Raw queries can bypass compilation for less overhead
🛠️ Adapter + reliability fixes (MsSQL, better-sqlite3, mapped enums)
🔒 BigInt precision preserved in relationJoins JSON
✅ New compilerBuild option: fast (default) or small
⚡ Raw queries can bypass compilation for less overhead
🛠️ Adapter + reliability fixes (MsSQL, better-sqlite3, mapped enums)
🔒 BigInt precision preserved in relationJoins JSON
Local test inserting 50 records:
- create() in a loop → 803ms
- createMany() → 129ms
~6x faster with one line change.
Use createMany() for batch inserts.
Local test inserting 50 records:
- create() in a loop → 803ms
- createMany() → 129ms
~6x faster with one line change.
Use createMany() for batch inserts.
You can log the raw SQL and execution time with a few lines:
You can log the raw SQL and execution time with a few lines: