Skip to content Skip to sidebar Skip to footer
Showing posts with the label Asynchronous

Tornado Asynchttpclient Fetch Callback: Extra Parameters?

I'm sort of new to this whole async game (mostly been a Django guy), but I was wondering: how c… Read more Tornado Asynchttpclient Fetch Callback: Extra Parameters?

Why Do Long Http Round Trip-times Stall My Tornado Asynchttpclient?

I'm using Tornado to send requests in rapid, periodic succession (every 0.1s or even 0.01s) to … Read more Why Do Long Http Round Trip-times Stall My Tornado Asynchttpclient?

Implementing An Asynchronous Iterator

Per PEP-492 I am trying to implement an asynchronous iterator, such that I can do e.g. async for f… Read more Implementing An Asynchronous Iterator

Is It Possible To Asynchronously Query Sql Server From Python (3.4)?

Is it possible to perform asynchronous queries against Microsoft SQL Server from Python (3.4), i.e.… Read more Is It Possible To Asynchronously Query Sql Server From Python (3.4)?

How To Provide User Constant Notification About Celery's Task Execution Status?

I integrated my project with celery in this way, inside views.py after receving request from the us… Read more How To Provide User Constant Notification About Celery's Task Execution Status?

Non-blocking Multiprocessing.connection.listener?

I use multiprocessing.connection.Listener for communication between processes, and it works as a ch… Read more Non-blocking Multiprocessing.connection.listener?