I am running the fastcgi application, after reading the fastCGI specification, I found a function called query multiplexing. It reminded me of Adobe RTMP multiplexing back in the days when the protocol was proprietary and closed.
As far as I understand, multiplexing allows you to reduce the overhead of creating new connections to FCGI clients, effectively interlacing pieces of requests, and at the same time allows you to connect the "keep-alive" model. Latter allows you to send multiple requests on the same connection.
The first question is - do I understand?
The next one - after some googling, I did not find a server there that implements FCGI multiplexing, I was primarily interested in the "popular" servers, I mean nginx and lighttpd. I even found some discussion about refusing FCGI request multiplexing.
So the question is, is there a server that supports this feature?
source share