معرفی شرکت ها


aiomcache-0.8.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Minimal pure python memcached client
ویژگی مقدار
سیستم عامل -
نام فایل aiomcache-0.8.1
نام aiomcache
نسخه کتابخانه 0.8.1
نگهدارنده ['Nikolay Kim <fafhrd91@gmail.com>, Andrew Svetlov <andrew.svetlov@gmail.com>']
ایمیل نگهدارنده ['aio-libs@googlegroups.com']
نویسنده Nikolay Kim
ایمیل نویسنده fafhrd91@gmail.com
آدرس صفحه اصلی https://github.com/aio-libs/aiomcache/
آدرس اینترنتی https://pypi.org/project/aiomcache/
مجوز BSD
memcached client for asyncio ============================ asyncio (PEP 3156) library to work with memcached. Getting started --------------- The API looks very similar to the other memcache clients: .. code:: python import asyncio import aiomcache async def hello_aiomcache(): mc = aiomcache.Client("127.0.0.1", 11211) await mc.set(b"some_key", b"Some value") value = await mc.get(b"some_key") print(value) values = await mc.multi_get(b"some_key", b"other_key") print(values) await mc.delete(b"another_key") asyncio.run(hello_aiomcache()) Version 0.8 introduces `FlagClient` which allows registering callbacks to set or process flags. See `examples/simple_with_flag_handler.py` ======= CHANGES ======= .. towncrier release notes start 0.8.1 (2023-02-10) ================== - Add ``conn_args`` to ``Client`` to allow TLS and other options when connecting to memcache. 0.8.0 (2022-12-11) ================== - Add ``FlagClient`` to support memcached flags. - Fix type annotations for ``@acquire``. - Fix rare exception caused by memcached server dying in middle of operation. - Fix get method to not use CAS. 0.7.0 (2022-01-20) ===================== - Added support for Python 3.10 - Added support for non-ascii keys - Added type annotations 0.6.0 (2017-12-03) ================== - Drop python 3.3 support 0.5.2 (2017-05-27) ================== - Fix issue with pool concurrency and task cancellation 0.5.1 (2017-03-08) ================== - Added MANIFEST.in 0.5.0 (2017-02-08) ================== - Added gets and cas commands 0.4.0 (2016-09-26) ================== - Make max_size strict #14 0.3.0 (2016-03-11) ================== - Dockerize tests - Reuse memcached connections in Client Pool #4 - Fix stats parse to compatible more mc class software #5 0.2 (2015-12-15) ================ - Make the library Python 3.5 compatible 0.1 (2014-06-18) ================ - Initial release


نیازمندی

مقدار نام
>=4 typing-extensions


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl aiomcache-0.8.1:

    pip install aiomcache-0.8.1.whl


نصب پکیج tar.gz aiomcache-0.8.1:

    pip install aiomcache-0.8.1.tar.gz