Skip to main content

Minimal pure python memcached client

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

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 Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page