Skip to content

Commit 5597ef3

Browse files
committed
upate based on feedback
1 parent daabff4 commit 5597ef3

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

content/200-orm/050-overview/500-databases/900-turso.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ export default defineConfig({
147147
adapter: true,
148148
},
149149
schema: path.join('prisma', 'schema.prisma'),
150+
engine: 'js',
150151
async adapter() {
151152
return new PrismaLibSQL({
152153
url: process.env.LIBSQL_DATABASE_URL,

content/200-orm/500-reference/325-prisma-config-reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Configure the schema engine your project should use.
348348
| -------- | ------------------ | -------- | ----------------- |
349349
| `engine` | `classic` or `js` | No | `classic` |
350350

351-
By default it is set to use the Rust-based schema engine, which requires that `datasource` be set
351+
By default it is set to use the classic engine, which requires that `datasource` be set
352352
in your `prisma.config.ts`.
353353

354354
```ts

content/500-platform/10-about.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ In each workspace, you can:
4545
- invite other users to collaborate in the workspace.
4646
- access the [Optimize dashboard](https://console.prisma.io/optimize?utm_source=docs&utm_medium=optimize-docs) to measure query performance and receive AI-powered recommendations.
4747

48+
### Database Metrics
49+
50+
You can have a single workspace that hosts several database. Within each database, you can view
51+
detailed reports on how your database is performing, with various metrics like:
52+
53+
- Average response size
54+
- Average query duration
55+
- Total egress
56+
- Total operations
57+
- Cache utilization
58+
4859
#### Optimize
4960

5061
You can access Optimize within your [Prisma Data Platform account](https://console.prisma.io/optimize) workspace.

content/800-guides/070-cloudflare-d1.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ export default {
191191
adapter: true,
192192
},
193193
schema: 'prisma/schema.prisma',
194+
engine: 'js',
194195
async adapter() {
195196
return new PrismaD1({
196197
CLOUDFLARE_D1_TOKEN: process.env.CLOUDFLARE_D1_TOKEN!,

0 commit comments

Comments
 (0)