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 details)
File details
Details for the file aiomcache-0.1.tar.gz
.
File metadata
- Download URL: aiomcache-0.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5cb8a2c7bf6fbdd786c84d31919a122e01bd7827f5c9832249e3272fcdea5bf |
|
MD5 | fc51c58adcc37fcb4fa357deab987cef |
|
BLAKE2b-256 | ca6b9c327b7d226ce32f86184fa1b0c2e05249af1b0d15e95937dc4c240e0d88 |