3a14df27ae
The 0.6x multiplier on requests/minute was too aggressive and assumed 36+ second request duration. Corrected to 0.15x which assumes 1-2 second average request duration (realistic for most PHP applications). Example calculation: - 421 requests/minute = 7 requests/second - With 0.15 multiplier: 63 concurrent PHP processes - This assumes ~1.5 second average request processing time - Much more realistic than the old hour-based 421 or the initial 252 Testing shows this works well for: - Fast APIs: 0.1-0.5s per request - Normal PHP apps: 1-2s per request - WordPress with queries: 2-5s per request