> Limited to 1 req/s is this ever gonna be reco...
# prisma-whats-new
k
Limited to 1 req/s
is this ever gonna be reconsidered? I’m so far only using prisma for pet projects, but it makes the experiences really poor (page load takes several seconds as I do SSR and preload some data (that requires several reqs))
h
have you tried combining multiple queries into one request?
query { getsomething() { fields .. } getsomethingelse() { fields .. } }
I do admit it's a kinda shitty limit
d
I think this has been changed to 10requests/ 10 seconds to allow small bursty workloads without throttling.