Skip to main content

Minimal pure python tornado memcached client

Project description

Asyncmc
====================

.. image:: https://travis-ci.org/ErDmKo/asyncmc.svg?branch=master

`Asyncmc <https://github.com/ErDmKo/asyncmc>`_ is a memcached client for `Tornado <https://github.com/tornadoweb/tornado>`__ web framework.
Asyncmc work with python 2.7 and python 3

Quick links
===========

* `Source (github) <https://github.com/ErDmKo/asyncmc>`_

* `License <https://raw.githubusercontent.com/ErDmKo/asyncmc/master/LICENSE.txt>`_

* `Examples <https://github.com/ErDmKo/asyncmc/tree/master/exapmles>`_


Hello, Memcached
==============

Here is a simple "Hello, Memcached" example for Tornado with Memcached.::


import tornado.ioloop
from tornado import gen
import asyncmc

loop = tornado.ioloop.IOLoop.instance()

@gen.coroutine
def out():
mc = asyncmc.Client(servers=['localhost:11211'], loop=loop)
yield mc.set(b"some_key", b"Some value")
value = yield mc.get(b"some_key")
print(value)
values = yield mc.multi_get(b"some_key", b"other_key")
print(values)
yield mc.delete(b"another_key")

loop.run_sync(out)

Requires
========


+ `Tornado <https://github.com/tornadoweb/tornado>`__
+ `Memcached <http://memcached.org/>`_


LICENSE
=======
Asyncmc is licensed under MIT.

CHANGES
=======

0.2 (15-06-2015)
----------------

- New features "add", "replace", "append", "prepend"

0.1 (10-06-2015)
----------------

- Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncmc-0.2.tar.gz (7.8 kB view hashes)

Uploaded Source

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