You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I sincere recommend kazoo to support asyncio handler,
your know twisted can be transform object from asyncio ,
in the future, may more and more Asynchronous framework can be transform object from asyncio!
i meaning that it will support a lot of frameworks if kazoo support asyncio!
-- your loyal fans
The text was updated successfully, but these errors were encountered:
The current implementation of connection routine uses blocked-style handler.select. It works well with monkey patch based solutions but does not work with asyncio.
In my opinion, this is a price for that asyncio chooses to use explicit scheduling and introduces new backward-incompatible syntax. So many libraries are hard to adapt asyncio without breaking Python 2.x users. Even the standard DBAPI2 and WSGI libraries could not be adapted too until new PEP was published. Adapting native asyncio means maintaining a standalone branch for Python 3.x users only, just like what Gunicorn do.
For Kazoo, using the threading handler in Python 3.x and asyncio may be fine enough, since Python 3.x has resolved the performance problem of GIL when multi-threading is enabled. The background kernel thread to maintain ZooKeeper connection avoids starving caused session expired also.
I sincere recommend kazoo to support asyncio handler,
your know twisted can be transform object from asyncio ,
in the future, may more and more Asynchronous framework can be transform object from asyncio!
i meaning that it will support a lot of frameworks if kazoo support asyncio!
-- your loyal fans
The text was updated successfully, but these errors were encountered: