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.

classification
Title: Add a StreamReaderBufferedProtocol
Type: Stage: patch review
Components: asyncio Versions:
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, tontinton, yselivanov
Priority: normal Keywords: patch

Created on 2020-07-11 16:23 by tontinton, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 21446 open tontinton, 2020-07-11 17:23
PR 21491 open tontinton, 2020-07-15 17:40
Messages (2)
msg373526 - (view) Author: Tony (tontinton) * Date: 2020-07-11 16:23
This will greatly increase performance, from my internal tests it was about 150% on linux.

Using read_into instead of read will make it so we do not allocate a new buffer each time data is received.
msg376079 - (view) Author: Tony (tontinton) * Date: 2020-08-29 21:19
bump
History
Date User Action Args
2022-04-11 14:59:33adminsetgithub: 85451
2020-08-29 21:19:22tontintonsetmessages: + msg376079
title: Convert StreamReaderProtocol to a BufferedProtocol -> Add a StreamReaderBufferedProtocol
2020-07-15 17:40:46tontintonsetpull_requests: + pull_request20633
2020-07-11 17:23:07tontintonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request20594
2020-07-11 16:34:15xtreaksetnosy: + yselivanov, asvetlov
components: + asyncio
2020-07-11 16:23:40tontintoncreate