Source: aiocache
Section: python
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Gianfranco Costamagna <locutusofborg@debian.org>
Build-Depends: debhelper-compat (= 13), dh-python,
               python3-all,
               python3-aiohttp,
               python3-aiomcache,
               python3-marshmallow,
               python3-memcache,
               python3-msgpack,
               python3-pytest,
               python3-pytest-asyncio,
               python3-pytest-cov,
               python3-pytest-mock,
               python3-redis,
               python3-setuptools,
Standards-Version: 4.7.4
Vcs-Browser: https://salsa.debian.org/python-team/packages/aiocache
Vcs-Git: https://salsa.debian.org/python-team/packages/aiocache.git
Homepage: https://github.com/aio-libs/aiocache

Package: python3-aiocache
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends},
Recommends: ${python3:Recommends}, python3-aiomcache, python3-marshmallow, python3-memcache, python3-msgpack, python3-redis
Suggests: ${python3:Suggests}
Description: multi backend asyncio cache
 Asyncio cache supporting multiple backends (memory, redis and memcached).
 This library aims for simplicity over specialization.
 All caches contain the same minimum interface which consists on the following
 functions:
 .
  - `add`: Only adds key/value if key does not exist.
  - `get`: Retrieve value identified by key.
  - `set`: Sets key/value.
  - `multi_get`: Retrieves multiple key/values.
  - `multi_set`: Sets multiple key/values.
  - `exists`: Returns True if key exists False otherwise.
  - `increment`: Increment the value stored in the given key.
  - `delete`: Deletes key and returns number of deleted items.
  - `clear`: Clears the items stored.
  - `raw`: Executes the specified command using the underlying client.
