Skip to main content

Minimal pure python memcached client

Project description

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

Project details


Release history Release notifications | RSS feed

This version

0.1

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page