|
|
|
|
|
by jolan
5808 days ago
|
|
I've had a couple problems but I wouldn't call it problematic: 1) When you select mod_php/the Apache SAPI, certain functions get disabled like chroot() and pcntl_fork() since they're not safe to be used under Apache. This is annoying when you have some backend scripts that need those functions. 2) If you run PHP with all the popular plugins, you're looking at about 15MB per Apache process/thread. @256 active clients that's almost 4GB of RAM. Insane, especially considering it's loaded in memory whether or not the requested resource is PHP or not. I recently switched to Nginx+FastCGI and I'm very happy with the speed and memory usage. FPM makes it even better. |
|