Hi,
I have backend servers (zope) which generally are single threaded and I have a maxconn set to 1. However when they send binary data such as a large video or image they will do this asynchronously and will accept another connection to process while streaming the last request. In order to make the most efficient use of the CPU of my servers I'd like my queues to dequeue at the point at which they receive the first byte from the backend sever rather than waiting for the connection to close. Is this possible? If not, is there a work around to get more efficiency?

