How does Fiber handle concurrent requests?

Viewed 38

I was wondering if Go would allocate a new goroutine per each request, like Java does with threads, or does it use an event-queue in the backend to perform tasks asynchronously, like node js (express)?

Go Fiber is one of the fastest frameworks out there and my doubt can be put out simply as what does fiber framework in go do when there are multiple concurrent requests?

0 Answers
Related