Custom PHP FastCGI interface? (Faster?)
问题 How do you build your own FastCGI interface in PHP? I'd like to do something similar to what they're doing in Perl, but in PHP. Is it even possible? Would it be faster? (That is, I'd like to be able to load a web app framework once into memory, and then just have FastCGI call a method I provide for every request. So not the more generic preloading of the PHP-interpreter that is happening in the "default" PHP FastCGI setup.) cheers! ( Edit : Isn't Mongrel and RoR doing this as well?) Ok I've