Web Workers, Memory, and Network Calls
Learn about web workers, memory, and the outcomes of network calls in our Rails application.
We'll cover the following
In development, our Rails app uses the
When the response is rendered, the worker can work on another request. Puma keeps these workers in a pool, and that pool has a finite limit. This is because each worker consumes memory and CPU (even if it’s not doing anything), and because memory and CPU are finite resources, there can only be so many workers per server.
Get hands-on with 1200+ tech skills courses.