Completion Handling in Fast CGI on IIS Servers on Windows

Finding Windows FastCGI Help turns out to be very difficult. Any help would be greatly explained.

The concept behind FastCGi is that a process stores a request, allowing state to be maintained between calls. This means you don't have the overhead of opening databases, etc. Between calls.

Also, FastCGI is fully muxed: http://cryp.to/publications/fastcgi/#MULTIPLEXING

The problem is the C API

The libfcgi.dll source is available here: http://www.fastcgi.com/drupal/node/5

This is not supported by MS as everyone involved with FCGI or IIS is in a rush

0


source to share


1 answer


To implement the FastCGI SIGTERM handler, a new FastCGI library for Windows was needed www.coastrd.com



0


source







All Articles