Changes between Version 21 and Version 22 of ServerArrangements
- Timestamp:
- Aug 6, 2006, 7:44:25 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerArrangements
v21 v22 47 47 48 48 With traditional CGI, the program which will be run -- in this case, Django plus a Django-powered application -- is loaded from disk into memory each time a request is served, which results in a significant amount of processing overhead and much slower responses. FastCGI and SCGI, in contrast, load the code only once -- when the server starts up -- and keep it in memory as long as the server is running, resulting in much faster responses. 49 50 If that hasn't put you off and you still need CGI, take a look at [http://code.djangoproject.com/ticket/2407 ticket 2407]