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 giampaolo.rodola
Recipients asvetlov, christian.heimes, giampaolo.rodola, neologix, pitrou, rosslagerwall
Date 2014-04-21.20:33:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398112412.39.0.831264116506.issue17552@psf.upfronthosting.co.za>
In-reply-to
Content
Attached is a simple benchmark script transmitting a 100MB file. 
On my Linux box sendfile() is almost twice as fast as send():

send()
real     0.0613s
user     0.0100s
sys      0.0900s
total    0.1000s

sendfile()
real     0.0318s
user     0.0000s
sys      0.0500s
total    0.0500s
History
Date User Action Args
2014-04-21 20:33:32giampaolo.rodolasetrecipients: + giampaolo.rodola, pitrou, christian.heimes, asvetlov, neologix, rosslagerwall
2014-04-21 20:33:32giampaolo.rodolasetmessageid: <1398112412.39.0.831264116506.issue17552@psf.upfronthosting.co.za>
2014-04-21 20:33:32giampaolo.rodolalinkissue17552 messages
2014-04-21 20:33:32giampaolo.rodolacreate