hi,all!
any server support fastcgi 'mulitplexing', that allows a single
client-server connection to be simultaneously shared by multiple
requests? after google, I find apache,nginx,lighttpd all not support
it.and test with nginx, seem when mulitiplexed = False is faster than
True.
def runfcgi(func, addr=('localhost', 8000)):
"""Runs a WSGI function as a FastCGI server."""
import flup.server.fcgi as flups
return flups.WSGIServer(func, multiplexed=True,
bindAddress=addr).run()
so why set this value 'True'? thanks!
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/webpy?hl=en.