Skip to main content
Archived

This project has been archived by its maintainers, and is no longer receiving any updates.

memcached client for asyncio

aiomemcache is a minimal, pure python client for memcached, kestrel, etc.

Requirements

Getting started

The API looks very similar to the other memcache clients:

import aiomemcache
mc = aiomemcache.Client("127.0.0.1", 11211, connect_timeout=5)
yield from mc.set(b"some_key", b"Some value")
value = yield from mc.get(b"some_key")
yield from mc.delete(b"another_key")

CHANGES

0.1 (02-04-2014)

  • Initial release

Release history Release notifications | RSS feed

This release

0.1 This release

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page