what is meaning of Simultaneous outgoing connections
does this mean if I have an expensive workload that takes 1 second, and now there are 6 users using this route, my worker will not accept any requests?
4 Replies
No, it's for
fetch()
requests in a single invocation
A worker can have unlimited concurrent users
We have workers doing millions of rps, lots of concurrent runsMaybe I'm still not getting meaning of single invocation.
:NotLikeThis:
I'm a user and go to https://example.com/
It invokes my worker, that's a worker invocation
The worker can then do 6 concurrent
fetch
requests within that worker invocationokay, so that's per new worker. I see