[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

php under fastcgi

Blitzen

1/21/2008 10:17:00 AM

Problem: I need to run regular php scripts under FastCGI, saving on
the overhead of fopen'ing and reading in the contents before executing
each time. Therefore, in theory I guess you'd put a FastCgiServer
directive in your httpd.conf, and direct it to some sort of app (could
be written in C or anything) that loads and keeps in memory all your
php files from your site, and runs their contents when a url request
comes in for that file. Does such an app exist?
1 Answer

Dan Fitzpatrick

1/22/2008 12:13:00 AM

0

drblitzkrieg@gmail.com wrote:
> Problem: I need to run regular php scripts under FastCGI, saving on
> the overhead of fopen'ing and reading in the contents before executing
> each time. Therefore, in theory I guess you'd put a FastCgiServer
> directive in your httpd.conf, and direct it to some sort of app (could
> be written in C or anything) that loads and keeps in memory all your
> php files from your site, and runs their contents when a url request
> comes in for that file. Does such an app exist?
>
>
Take a look at http://fastcgi.coremail.cn/configu...

Dan