diff --git a/content/100-getting-started/01-quickstart.mdx b/content/100-getting-started/01-quickstart.mdx index c020f0104c..6667288ed8 100644 --- a/content/100-getting-started/01-quickstart.mdx +++ b/content/100-getting-started/01-quickstart.mdx @@ -440,6 +440,12 @@ Check out the [`prisma-examples`](https://github.com/prisma/prisma-examples/) re | [`product-search-with-typesense`](https://github.com/prisma/prisma-examples/tree/latest/pulse/product-search-with-typesense) | A cron job that syncs data into Typesense (built with Hono.js) | | [`data-sync-with-bigquery`](https://github.com/prisma/prisma-examples/tree/latest/pulse/data-sync-with-bigquery) | A script that automatically syncs data into Google BigQuery | +### Get query insights and analytics with Prisma Optimize + +[Prisma Optimize](/optimize) helps you generate insights and provides recommendations that can help you make your database queries faster. + +Optimize aims to help developers of all skill levels write efficient database queries, reducing database load and making applications more responsive. + ### Speed up your database queries with Prisma Accelerate [Prisma Accelerate](/accelerate) is a connection pooler and global database cache that can drastically speed up your database queries. Check out the [Speed Test](https://accelerate-speed-test.prisma.io/) or try Accelerate with your favorite framework: diff --git a/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/300-next-steps.mdx b/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/300-next-steps.mdx index a86a38f8b6..aa06a08fe5 100644 --- a/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/300-next-steps.mdx +++ b/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/300-next-steps.mdx @@ -78,6 +78,12 @@ The Prisma blog features comprehensive tutorials about Prisma ORM, check out our Prisma Studio is a visual editor for the data in your database. Run `npx prisma studio` in your terminal. +### Get query insights and analytics with Prisma Optimize + +[Prisma Optimize](/optimize) helps you generate insights and provides recommendations that can help you make your database queries faster: + +Optimize aims to help developers of all skill levels write efficient database queries, reducing database load and making applications more responsive. + ### Try a Prisma ORM example The [`prisma-examples`](https://github.com/prisma/prisma-examples/) repository contains a number of ready-to-run examples: diff --git a/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/300-next-steps.mdx b/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/300-next-steps.mdx index 6ce766ccb4..eb5dcfe45e 100644 --- a/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/300-next-steps.mdx +++ b/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/300-next-steps.mdx @@ -81,6 +81,12 @@ The Prisma blog features comprehensive tutorials about Prisma ORM, check out our Prisma Studio is a visual editor for the data in your database. Run `npx prisma studio` in your terminal. +### Get query insights and analytics with Prisma Optimize + +[Prisma Optimize](/optimize) helps you generate insights and provides recommendations that can help you make your database queries faster: + +Optimize aims to help developers of all skill levels write efficient database queries, reducing database load and making applications more responsive. + ### Change the database schema (e.g. add more tables) To evolve the app, you need to follow the same flow of the tutorial: diff --git a/content/200-orm/200-prisma-client/600-observability-and-logging/index.mdx b/content/200-orm/200-prisma-client/600-observability-and-logging/index.mdx index 9349310804..8c51836209 100644 --- a/content/200-orm/200-prisma-client/600-observability-and-logging/index.mdx +++ b/content/200-orm/200-prisma-client/600-observability-and-logging/index.mdx @@ -7,4 +7,13 @@ hide_table_of_contents: true ## In this section +:::tip Get query insights and analytics with Prisma Optimize + +[Prisma Optimize](/optimize) helps you generate insights and provides recommendations that can help you make your database queries faster: + +Optimize aims to help developers of all skill levels write efficient database queries, reducing database load and making applications more responsive. + +::: + + diff --git a/content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/index.mdx b/content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/index.mdx index 17e366f5ca..9b187639d6 100644 --- a/content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/index.mdx +++ b/content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/index.mdx @@ -5,11 +5,14 @@ metaDescription: 'Debugging & troubleshooting' hide_table_of_contents: true --- - +:::tip Get query insights and analytics with Prisma Optimize -Debugging & troubleshooting +[Prisma Optimize](/optimize) helps you generate insights and provides recommendations that can help you make your database queries faster: + +Optimize aims to help developers of all skill levels write efficient database queries, reducing database load and making applications more responsive. + +::: - ## In this section diff --git a/content/200-orm/800-more/400-comparisons/04-prisma-and-drizzle.mdx b/content/200-orm/800-more/400-comparisons/04-prisma-and-drizzle.mdx index de5f825804..14920c0a4a 100644 --- a/content/200-orm/800-more/400-comparisons/04-prisma-and-drizzle.mdx +++ b/content/200-orm/800-more/400-comparisons/04-prisma-and-drizzle.mdx @@ -442,6 +442,7 @@ In addition to Prisma Studio, Prisma offers commercial products via the Prisma D - [Prisma Accelerate](https://www.prisma.io/data-platform/accelerate?utm_source=docs&utm_medium=orm-docs): A connection pooler and global cache that integrates with Prisma ORM. Users can take advantage of connection pooling immediately and can control caching at an individual query level. - [Prisma Pulse](https://www.prisma.io/data-platform/pulse?utm_source=docs&utm_medium=orm-docs): A change data capture (CDC) service where Prisma Client can subscribe to database changes and receive them in real-time with little to no setup. +- [Prisma Optimize](https://www.prisma.io/data-platform/optimize?utm_source=docs&utm_medium=orm-docs): An AI-driven query analytics tool that lets you gain deep insights and get actionable recommendations to improve your database queries. These products work hand-in-hand with Prisma ORM to offer comprehensive data tooling, making building data-driven applications easy by following [Data DX](https://datadx.io/) principles.