Rate Limiting HTTP Requests with Fibers in Effect

In my frontend app, I ahve about 300 Fibers all making use of a HTTP endpoint that only allows for 10 requests per second. Is there a way in Effect to model this, such that I don't make too many requests, and instead let the other fibers wait until they can make a request?
Was this page helpful?