FastCGI is a protocol for interfacing interactive programs with a web server. FastCGI is a variation on the earlier Common Gateway Interface (CGI); FastCGI's main aim is to reduce the overhead associated with interfacing the web server and CGI programs, allowing a server to handle more web page ...
18
votes
5answers
8k views
How to gracefully restart django running fcgi behind nginx?
I'm running a django instance behind nginx connected using fcgi (by using the manage.py runfcgi command). Since the code is loaded into memory I can't reload new code without killing and restarting ...
6
votes
3answers
1k views
Python ctypes MemoryError in fcgi process from PIL library
I'm trying to run Django on shared hosting (Bluehost). I'm using functionality that requires PIL. PIL imports and works from an interactive shell, but in my fcgi process it crashes with a MemoryError ...
14
votes
2answers
8k views
Is there a speed difference between WSGI and FCGI?
From the web I've gleaned that WSGI is a CGI for python web development/frameworks. FCGI seems to be a more generalised gateway for a variety of languages. Don't know the performance difference ...
10
votes
3answers
11k views
how to nginx virtual servers + fcgi for django?
I would like to run several virtual hosts via nginx, each serving a different django app via fcgi. Is this possible? If so, does anyone have good resources on where/how to start? The nginx docs seem ...
6
votes
6answers
5k views
FastCGI for C++
I've found only two FastCGI libraries for C++. There's the "official" one, and fastcgi++. How is either one better than the other? Do any others exist?
20
votes
3answers
9k views
mod_php vs cgi vs fast-cgi
I have been trying to understand the exact meaning/purpose of loading php as an apache module vs the rest.
When php is installed as an apache module, what exactly happens? For example, does reading ...
6
votes
4answers
736 views
Do I have to put DB connection/initialization outside of the FCGI loop to take advantage of FastCGI in Perl?
Let's say I've got some Perl code that increments a column in a specific row of a database each time it's hit, and I'm expecting it to be hit pretty frequently, so I'd like to optimize it with FCGI. ...
2
votes
1answer
309 views
How to design applications for persistent PHP FastCGI processes?
PHP is finally starting to get TRUE FastCGI implementations. (Not to be confused with PHP-FPM or PHP process startup scripts commonly used with Nginx - think node.js for PHP.
How do you design ...
2
votes
0answers
123 views
configure mongo c++ driver code in fcgi c++ program
I and trying to connect mongo c++ driver code with fcgi c++ code which i found on this site http://www.nongnu.org/fastcgipp/ my code is as follows .
...
0
votes
2answers
81 views
Files being served are stale / cached ; Python as fcgi + web.py + nginx
I'm serving files in ubuntu using Nginx and fcgi, python and web.py. My index.py contents are:
app = web.application(urls, globals(), True)
if __name__ == "__main__":
web.wsgi.runwsgi = lambda ...
0
votes
1answer
247 views
Django dispatch.fcgi Works From Command Line but gets 500 from Browser
I have a Django app running on a shared server using FCGI. When I run the dispatch.fcgi script from the command line, I see the HTML content of my homepage, as expected. However, when I try to visit ...
0
votes
0answers
115 views
php - any way to do “real” fascgi?
I have been using perl and ruby in a fcgi setting and was planning to migrate a large code base of php from mod_php to fcgi, I looked at the php site and saw they supported fcgi and 5.3 has fpm to ...
-1
votes
1answer
152 views
reg fcgi and c++
I am developing a sample using c++ which will get request from lighttpd webserver using fcgi protocol and process the request and send the response to client.
I could not find any samples using fcgi ...