Minimal pure python memcached client
Project description
memcached client for asyncio
asyncio (PEP 3156) library to work with memcached.
Requirements
Python >= 3.3
Getting started
The API looks very similar to the other memcache clients:
import aiomcache mc = aiomcache.Client("127.0.0.1", 11211, pool_size) yield from mc.set(b"some_key", b"Some value") value = yield from mc.get(b"some_key") values = yield from mc.multi_get(b"some_key") yield from mc.delete(b"another_key")
CHANGES
0.1 (06-18-2014)
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiomcache-0.1.tar.gz
(6.5 kB
view hashes)