Skip to content

Commit

Permalink
add optimize mentios in various places
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasburk committed Oct 16, 2024
1 parent 6d34cdf commit 8c44611
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 3 deletions.
6 changes: 6 additions & 0 deletions content/100-getting-started/01-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

:::


<Subsections depth="3" />
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ metaDescription: 'Debugging & troubleshooting'
hide_table_of_contents: true
---

<TopBlock>
:::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.

:::

</TopBlock>

## In this section

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 8c44611

Please sign in to comment.