Skip to content

A pure-Python(3.7+) zero-depend asyncio memcached client, fork from aiomcache.

License

Notifications You must be signed in to change notification settings

lightsparkdev/aiomemcached

Repository files navigation

memcached client for asyncio

asyncio (PEP 3156) library to work with memcached.

https://travis-ci.org/aio-libs/aiomcache.svg?branch=master

Requirements

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")

About

A pure-Python(3.7+) zero-depend asyncio memcached client, fork from aiomcache.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.8%
  • Makefile 1.1%
  • Shell 0.1%