Hi,

On Mon, 2008-05-12 at 09:16 -0700, Andrew Smith wrote:
> Hello
> 
> When I use response as a file-like object, by calling response.write
> or passing it to something which expects a file-like object, does it
> build up its contents in memory or stream them straight to the
> browser?

It builds up the contents in memory which is pretty obvious: Until you
return the HttpResponse instance from your view function, the server
process does not know anything about it.

-- 
http://spinlock.ch/blog/

--~--~---------~--~----~------------~-------~--~----~
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