> Also from the doc http://projects.unbit.it/uwsgi/wiki/AsyncSupport > >> Currently uWSGI async mode does not support the read of POST data in > async mode. This is not a big problem for most of the apps, but if your > webserver handler does not do buffering of the post data (as apache) you > could get some performance problem with big uploads. This will be fixed in > future releases. > > I am using nginx, is it possible to do async file upload? > > >
If you mean getting chunks of the file in real time, it is not posibile with nginx (it buffers the whole body). If you only care about non-blocking there is no problem. -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
