Skip to content

Commit

Permalink
Merge pull request #31 from darthmaim/patch-1
Browse files Browse the repository at this point in the history
Fix Readme markdown formatting
  • Loading branch information
Serhii Tatarintsev authored Nov 15, 2023
2 parents ad696cc + b2f24a5 commit d00866c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,14 @@ prisma.$primary().user.findMany({ where: { ... }})
Sometimes you might want to do the opposite and route the request to a replica even though
it will be routed to primary by default. In that case, you can use the `$replica()` method:

````ts
```ts
prisma.$replica().$queryRaw`SELECT ...`
```

### Caveats and limitations

- At the moment, if you are using this read replicas extension alongside other extensions, this extension should be applied last:

```ts
const prisma = new PrismaClient()
.$extends(withAccelerate())
Expand All @@ -95,6 +97,6 @@ prisma.$replica().$queryRaw`SELECT ...`
url: 'postgresql://replica.example.com:5432/db',
}),
)
````
```

- If you use the read replicas extension with Prisma version below 5.1, any result extensions will not work.

0 comments on commit d00866c

Please sign in to comment.