Re: render_GET and memory consumption

[email protected]
Newsgroups gmane.comp.python.twisted.web
Message-ID <20101221174713.5919.1700330039.divmod.xquotient.191@localhost.localdomain>
On 04:43 pm, [email protected] wrote:
>
>OK, I guess I'm being slow :-( Here's another version, same results.
>
>import os
>from twisted.internet import reactor
>from twisted.web.server import Site
>from twisted.web.resource import Resource
>
>CHUNK_SIZE = 32*1024
>data = os.urandom(10*1024*1024)
>chunks = []
>
>def make_chunks():
>     s = 0
>     for chunk in iter(lambda: data[s:s+CHUNK_SIZE], ''):
>         chunks.append(chunk)
>         s = s + CHUNK_SIZE
>
>class TestPage(Resource):
>      isLeaf = True
>
>      def render_GET(self, request):
>          for chunk in chunks:
>              request.write(chunk)
>
>make_chunks()
>root = Resource()
>root.putChild('test', TestPage())
>reactor.listenTCP(8880, Site(root))
>reactor.run()

This version has flat memory usage on my system - 33MB all the way 
through.
Jean-Paul
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.