-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify stream classes #2555
Comments
FlowControlChuckQueue is useful when server emits item-per-chunk - that's quite handy to process. CouchDB does that for instance. Let me check if this approach is still actual. |
If CouchDB needs |
Not a problem, I know (: Probably, that even wouldn't be need after switching to ijson. |
Just wanted to describe the case when that flow was useful. Some else users eventually may use it as well. |
Fixed by @2256 |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a [new issue] for related bugs. |
ChunksQueue
-- not used by aiohttp codeFlowControlChunksQueue
-- not used by aiohttp codeFlowControlStreamReader
intoStreamReader
, dropFlowControlStreamReader
. The reader without flow control is not used by aiohttp,FlowControlStreamReader
is too long name. Getting rid ofawait super()
calls may boost performance a little.StreamReader
to prevent flipping between paused and resumed states too often.The text was updated successfully, but these errors were encountered: