Performance: Puma server configuration
HIGH IMPACT
This affects how fast the Rails app can handle incoming web requests and how well it uses server resources.
threads 5,16 workers 2
threads 1,1 workers 1
| Pattern | Concurrency | Memory Usage | Startup Time | Verdict |
|---|---|---|---|---|
| threads 1,1 workers 1 | Single request at a time | Higher per worker | Slower | [X] Bad |
| threads 5,16 workers 2 | Multiple requests concurrently | Optimized with preload | Faster | [OK] Good |