> Hi , I'm trying to measure how much time does uwsgi cost to finish a > request. > In http-socket mode I get : 0.052ms /req, 19k req/s , put uwsgi behind > nginx : 0.122ms/req, 9k/s . > Is there a way to imporve the performance when uwsgi is behind nginx? > Thank you. > all my confs and codes are here: > https://gist.github.com/maliubiao/7653464 > _______________________________________________ > uWSGI mailing list > [email protected] > http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi >
you can improve a bit using unix sockets instead of tcp. But do not expect to have better results than --http-socket as IPC has a cost. -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
