Asyncmc is a memcached client for Tornado web framework. Asyncmc work with python 2.7 and python 3
Here is a simple "Hello, Memcached" example for Tornado with Memcached
import tornado.ioloop
from tornado import gen
import asyncmc
loop = tornado.ioloop.IOLoop.instance()
@gen.coroutine
def out():
mc = asyncmc.Client(servers=['localhost:11211'], loop=loop)
yield mc.set(b"some_key", b"Some value")
value = yield mc.get(b"some_key")
print(value)
values = yield mc.multi_get(b"some_key", b"other_key")
print(values)
yield mc.delete(b"another_key")
loop.run_sync(out)
To install asyncmc, simply:
$ pip install asyncmc
Asyncmc is licensed under MIT.