全部搜索项
trixie  ] [  forky  ] [  sid  ]
[ 源代码: aiomcache  ]

软件包:python3-aiomcache(0.8.2-1)

python3-aiomcache 的相关链接

Screenshot

Debian 的资源:

下载源码包 aiomcache

维护者:

外部的资源:

相似软件包:

Minimal pure python memcached client

memcached client for asyncio 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`

其他与 python3-aiomcache 有关的软件包

  • 依赖
  • 推荐
  • 建议
  • 增强

下载 python3-aiomcache

下载可用于所有硬件架构的
硬件架构 软件包大小 安装后大小 文件
all 10.3 kB50.0 kB [文件列表]