asyncmc
asyncmc copied to clipboard
Async Memcached client for Tornado
The toro dependency no longer works with modern Pythons. I think the best option is to bump the minimum supported tornado version and use the native asyncio synchronization primitives.
toro relies on the setuptools 2to3 helper, which is gone in current setuptools just use native `asyncio.Queue` instead on Python 3.x Fixes #12
Hi there, I noticed the tests are failing "build error" in Travis. I'm interested in the health of this project and would be happy to try resolving this issue. @ErDmKo...
For our application, we are trying to setup asyncmc as a singleton, instantiated at application startup. This way we can reuse the connection many times over without instantiating a new...
Hi, the method Connection.send_cmd_all() (pool.py) calls host.mark_dead(msg) on a socket.error: but the Host class doesn't implement such method, so the AttributeError is raised. I have written this method in the...