On 2007-12-30 20:53:34 -0700, "[EMAIL PROTECTED]" 
<[EMAIL PROTECTED]> said:

> 
> Hello,
> 
> Django is looking promising as a web app plattform for us.
> We want to build an Webapp which major function is to allow users
> upload files securely and fast.
> File upload speed will be a major factor.
> Searching in this group and on google for django + file upload gave
> lot of negetive results ( Slow uploads, higher memory footprint etc)
> But these results are dates ( 1 year or older). Could you guys please
> share your experience with django and file uploads ?
> 
> It boils down to this. If you want to build an webapp which should
> allow http / https file uploads in magnitude of 600- 900 MB or even
> more on regular basis will you code it in django ?

Yes, but not without patching trunk. Currently, file uploads are stored 
in memory then written to disk. Clearly you can see this being a 
problem with large files of 600-900 MB.

Check out [1] which has patches to stream large files to disk before 
saving it in its destination directory as defined by upload_to in your 
FileField.

[1]: http://code.djangoproject.com/ticket/2070

> 
> 
> Thanks,
> Manoj
> 

-- 
Brian Rosner
http://oebfare.com



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to