Coder Social home page Coder Social logo

Comments (6)

GoogleCodeExporter avatar GoogleCodeExporter commented on May 12, 2024
Agree in general, as we discussed today.
Not sure about connection_made() call.
Should it be specific?
It's called once per protocol instance and may generate new connections as well.
I vote to leave if delayed (I mean call_soon).


Original comment by [email protected] on 21 Mar 2013 at 2:16

from asyncio.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 12, 2024
I don't actually see any qualifying occurrences of call_soon(connection_made, 
...).

Original comment by [email protected] on 21 Mar 2013 at 3:14

from asyncio.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 12, 2024
new code changed semantic of _read_ready()

was: read data from all ready sockets then process
now: read one ready socket - process, read next ...

UnixSubprocessTransport uses call_soon as well.

Original comment by [email protected] on 22 Mar 2013 at 11:19

from asyncio.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 12, 2024
I'm not sure it's bad though.

Suppose 3 out of 10 sockets are returned as "ready" by the selector.  Then the 
_read_ready callback is scheduled using call_soon() for each of them.  In the 
old way, the three _read_ready callbacks would each read some data off their 
socket, schedule their protocol.data_received callback using call_soon(), then 
_run_once() would loop back and do *another* polling loop, and then finally the 
three data_received callbacks would be run.

Using the new approach, all data would be read *and* all the data_received 
callbacks called before going back to I/O polling.  So there would be fewer I/O 
poll calls to process the same amount of data.  I think that's a win.

Original comment by [email protected] on 22 Mar 2013 at 11:27

from asyncio.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 12, 2024
Please review https://codereview.appspot.com/8416045/

Original comment by [email protected] on 7 Apr 2013 at 1:01

from asyncio.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 12, 2024
Fixed in 
https://code.google.com/p/tulip/source/detail?r=8700bc263f1c661c5cb6701524649fb7
94af8b0f
Close the issue.

Original comment by [email protected] on 13 Apr 2013 at 5:09

  • Changed state: Fixed

from asyncio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.