This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients ajaksu2, ebfe, neologix, pitrou, rhettinger
Date 2010-04-03.10:20:08
SpamBayes Score 3.4165385e-08
Marked as misclassified No
Message-id <1270290011.66.0.13851394045.issue1501108@psf.upfronthosting.co.za>
In-reply-to
Content
In the test script, simply changing 

def emit(f, data=snips):
    for datum in data:
        f.write(datum)

to 

def gemit(f, data=snips):
    datas = ''.join(data)
    f.write(datas)

improves direct gzip performance from
[1.1799781322479248, 0.50524115562438965, 0.2713780403137207]
[1.183434009552002, 0.50997591018676758, 0.26801109313964844]
[1.173914909362793, 0.51325297355651855, 0.26233196258544922]

to

[0.43065404891967773, 0.50007486343383789, 0.26698708534240723]
[0.43662095069885254, 0.49983596801757812, 0.2686460018157959]
[0.43778109550476074, 0.50057196617126465, 0.2687230110168457]

which means that you're better off letting the application handle buffering issues. Furthermore, the problem with gzip-level buffering is the choice of the default buffer size.

Time to close ?
History
Date User Action Args
2010-04-03 10:20:12neologixsetrecipients: + neologix, rhettinger, pitrou, ajaksu2, ebfe
2010-04-03 10:20:11neologixsetmessageid: <1270290011.66.0.13851394045.issue1501108@psf.upfronthosting.co.za>
2010-04-03 10:20:09neologixlinkissue1501108 messages
2010-04-03 10:20:08neologixcreate