arthur debert wrote:

>Hi Ivan.
>
>Just to make sure I understand:
>- after patching django I 've set:
>STORE_UPLOAD_ON_DISK = True
>
>I am trying to use this on the admin. Any more steps I must take?
>  
>
Hm... I don't think it would help very much in admin. The patch provides 
an interface to an open file-like object stored on disk but admin still 
accesses it the old way so the file will be immediately loaded in 
memory. However I think that there _will_ be a performance gain even in 
this case since the patch will stream the file on disk when it is 
received by the web server. Without the patch this file is stored in 
memory like 2 or 3 times (including temporary storages when copying).

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" 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/django-developers
-~----------~----~----~----~------~----~------~--~---

Reply via email to