2008/12/14 offline <[email protected]>: > > I have an issue with file uploads and django custom upload handlers. > Django method of receiving chunk of file starts working only after the > file has been completely uploaded. Does mod_wsgi hold the post method > data until it complete and then send it to application?
No, mod_wsgi doesn't hold on to data. Check with the Django folks though, as I believe it buffers whole request content before passing it off to handler. This is I believe unless you have some streaming upload patches and do uploads in certain way. It is possible the patches are in Django 1.0, but not entirely sure. Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" 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/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
