Tagged Questions
The preforking tag has no wiki summary.
3
votes
1answer
159 views
FastCGI fork in c
I'm currently developing highload project, i need to use C/FastCGI/nginx combination.
The problem is, i need my FastCGI application to run in threads/processes.
I know two ways to do that:
1) ...
2
votes
2answers
105 views
FastCGI / SCGI pre-fork
I've been trying to implement a web server gateway (for fun and educational purposes) and I have some questions about the core architecture behind FastCGI/SCGI with respect to the pre-fork model.
How ...
2
votes
1answer
2k views
accept() with sockets shared between multiple processes (based on Apache preforking)
I'm working on some Python code modeled on Apache's MPM prefork server. I am more an applications programmer than a network programmer and it's been 10 years since I read Stevens, so I'm trying to get ...
1
vote
0answers
26 views
apache/php module socket issue
I'm running an Apache2.2 server+PHP 5.2 under Debian Lenny 32bit.
I've built in C a "simple" php module extension.
This extension is doing one thing: Calling, through a socket, a small "echo server" ...
1
vote
1answer
215 views
How to serve PHP dynamic images efficiently on a LAMP server?
Right now I'm running a PHP script on my LAMP (CentOS/Apache/MySQL/PHP) stack that generates dynamic images using GD. I'm caching them on the hard drive for 5 minutes. If a cached version exists, I ...
0
votes
0answers
37 views
How to make apache drop connections
My goal is to make apache drop connections if there are more than MaxClients connections.
My configuration is
StartServers 5
MinSpareServers 5
MaxSpareServers 10
ListenBackLog ...
0
votes
0answers
57 views
random change of language when deploying django using prefork
I experience a weird problem when deploying Django on a preforked apache or a preforked FastCGI with nginx. The detected language randomly changes (to one of the 4 languages configured in settings) ...