Subject: | Probably FCGI::ProcManager should call srand after forking child |
http://perldoc.perl.org/functions/srand.html
"Another case is that you may want to call srand() after a fork() to avoid child processes sharing the same seed value as the parent (and consequently each other)."
Otherwise when FCGI::ProcManager spawns few childs one after another they all will have the same seed.
One possible solution is to add the srand call to the handling_init subroutine.