86

I'm just wondering what the differences and advantages are for the different CGI's out there. Which one would be best for python scripts, and how would I tell the script what to use?

4
  • Is mod_wsgi faster? My current server uses CGI, what reasons are there to switch? Commented Oct 14, 2010 at 20:38
  • Possible duplicate: stackoverflow.com/questions/219110/… Commented Oct 14, 2010 at 20:38
  • We can't tell you if mod_wsgi will be faster in your environment. You have to actually measure them in your environment with your constraints and your applications and your configuration. Commented Oct 14, 2010 at 21:02
  • mod_wsgi is Apache only. Is it still the most popular in 2012? Commented Mar 28, 2012 at 22:24

4 Answers 4

49

A part answer to your question, including scgi.

CGI vs FCGI

Lazy and not writing it on my own. From the wikipedia: http://en.wikipedia.org/wiki/FastCGI

Instead of creating a new process for each request, FastCGI uses persistent processes to handle such requests. Multiple processes can configured, increasing stability and scalability. Each individual FastCGI process can handle many requests over its lifetime, thereby avoiding the overhead of per-request process creation and termination

Sign up to request clarification or add additional context in comments.

2 Comments

There is a FastCGI stdio library (marcos) that let you make a single program capable of running both as CGI and as FastCGI app: fastcgi.com/devkit/doc/fastcgi-prog-guide/ap_guide.htm
Question about FastCGI: How it handle simultaneous connections with one process when PHP itself is blocking language ? What if I have something "sleep(100)" . Wont it block the process for the other users ? Thanks
19

There's also a good background reader on CGI, WSGI and other options, in the form of an official python HOWTO: http://docs.python.org/2/howto/webservers.html

2 Comments

This is a great resource for beginners.
Looks like the url is obsolete. But this one works: docs.python.org/2/howto/webservers.html
13

In a project like Django, you can use a WSGI (Web Server Gateway Interface) server from the Flup module.

A WSGI server wraps a back-end process using one or more protocols:

In 2019, WSGI was superseded by ASGI (Asynchronous Server Gateway Interface), used by frameworks like FastAPI on servers like Uvicorn, which is much faster.

Comments

6
  • FastCGI is a kind of CGI which is long-live, which will always be running.
  • With FastCGI, it'll take less time.
  • Because of multi-processes, FastCGI will cost more memory than CGI.

In Detail Diff between FastCGI vs CGI

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.