Max Queries per second for DO
# workers-help
s
In docs there is soft limit mentioned of 1000 queries per second per durable object. My question is, if I have class Page, and I create DO with .idFromName(pathname) , does it mean that each different path will get 1k queries per second limit? Or whole Page class gets 1k regardless of
pathname
?
k
It's the limit for the individual object, so the path.
s
Ok, thanks for clarifying this