Drizzle instead of Prisma #9683
MauriceArikoglu
started this conversation in
Feature requests
Replies: 1 comment
-
I was looking into this as well and came close to building it. Then I did some research and Drizzle's benchmarks do show it's faster than Prisma, but this is because Prisma PostgresQL Full Text search is not production ready and is not efficient. Keystone, under the hood, doesn't use Prisma's full text search and actually builds the where clause based on the fields themselves. Prisma's solution to their full text search issue is to build custom queries and Keystone does this internally with their dynamic where clause. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Drizzle can bring up to 10x performance increase in comparison to prisma according to their benchmarks.
They also offer a prisma adapter to gradually adopt.
Beta Was this translation helpful? Give feedback.
All reactions