anyone mind sharing what a typical response time l...
# orm-help
k
anyone mind sharing what a typical response time looks like for them? I’ve been testing out Prisma, first in a sandbox, now with my own cluster running in AWS via Fargate. My GQL app is deployed via up as a lambda function in the same region. Typical response times for queries seem to be between 400-600ms - not terrible, but not fantastic either (Our current GQL app with essentially the same schema is <100ms usually). Biggest surprise to me was that I didn’t see much of an improvement when switching from the sandbox to my own server. Wondering if this is just standard, or if there’s some optimization path I’m missing somewhere. Thanks!
Realized this might make a better forum topic, so moved it here: https://www.prisma.io/forum/t/typical-response-latency/3593
h
Well in theory prisma can never be faster than a well optimized server, because it's another step to the database
👍 1
And they have generic logic to resolve queries which have to work with all types
n
that's unexpected, thanks for bringing this up!