https://github.com/aio-libs/aiocache
Asyncio cache manager for redis, memcached and memory
https://github.com/aio-libs/aiocache
asyncio cache cachemanager memcached python-3 redis
Last synced: 8 days ago
JSON representation
Asyncio cache manager for redis, memcached and memory
- Host: GitHub
- URL: https://github.com/aio-libs/aiocache
- Owner: aio-libs
- License: bsd-3-clause
- Created: 2016-09-30T09:25:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-27T16:30:42.000Z (20 days ago)
- Last Synced: 2025-03-30T13:36:46.700Z (17 days ago)
- Topics: asyncio, cache, cachemanager, memcached, python-3, redis
- Language: Python
- Homepage: http://aiocache.readthedocs.io
- Size: 1.34 MB
- Stars: 1,248
- Watchers: 21
- Forks: 162
- Open Issues: 48
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- best-of-python - GitHub - 13% open · ⏱️ 01.06.2024): (Data Caching)
- awesomeLibrary - aiocache - Asyncio cache manager for redis, memcached and memory. (语言资源库 / python)
README
aiocache
########Asyncio cache supporting multiple backends (memory, redis and memcached).
.. image:: https://codecov.io/gh/aio-libs/aiocache/branch/master/graph/badge.svg
:target: https://codecov.io/gh/aio-libs/aiocache.. image:: https://badge.fury.io/py/aiocache.svg
:target: https://pypi.python.org/pypi/aiocache.. image:: https://img.shields.io/pypi/pyversions/aiocache.svg
:target: https://pypi.python.org/pypi/aiocacheThis 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... role:: python(code)
:language: python.. contents::
.. section-numbering:
Installing
==========- ``pip install aiocache``
- ``pip install aiocache[redis]``
- ``pip install aiocache[memcached]``
- ``pip install aiocache[redis,memcached]``
- ``pip install aiocache[msgpack]``Usage
=====Using a cache is as simple as
.. code-block:: python
>>> import asyncio
>>> from aiocache import SimpleMemoryCache
>>> cache = SimpleMemoryCache() # Or RedisCache, MemcachedCache...
>>> with asyncio.Runner() as runner:
>>> runner.run(cache.set('key', 'value'))
True
>>> runner.run(cache.get('key'))
'value'Or as a decorator
.. code-block:: python
import asyncio
from collections import namedtuple
from aiocache import RedisCache, cached
from aiocache.serializers import PickleSerializer
# With this we can store python objects in backends like Redis!Result = namedtuple('Result', "content, status")
redis_client = redis.Redis(host="127.0.0.1", port=6379)
redis_cache = RedisCache(redis_client, namespace="main")@cached(redis_cache, key="key", serializer=PickleSerializer(), port=6379, namespace="main")
async def cached_call():
print("Sleeping for three seconds zzzz.....")
await asyncio.sleep(3)
return Result("content", 200)async def run():
async with redis_client, redis_cache:
await cached_call()
await cached_call()
await cached_call()
await redis_cache.delete("key")if __name__ == "__main__":
asyncio.run(run())How does it work
================Aiocache provides 3 main entities:
- **backends**: Allow you specify which backend you want to use for your cache. Currently supporting: SimpleMemoryCache, RedisCache using redis_ and MemCache using aiomcache_.
- **serializers**: Serialize and deserialize the data between your code and the backends. This allows you to save any Python object into your cache. Currently supporting: StringSerializer, PickleSerializer, JsonSerializer, and MsgPackSerializer. But you can also build custom ones.
- **plugins**: Implement a hooks system that allows to execute extra behavior before and after of each command.If you are missing an implementation of backend, serializer or plugin you think it could be interesting for the package, do not hesitate to open a new issue.
.. image:: docs/images/architecture.png
:align: centerThose 3 entities combine during some of the cache operations to apply the desired command (backend), data transformation (serializer) and pre/post hooks (plugins). To have a better vision of what happens, here you can check how ``set`` function works in ``aiocache``:
.. image:: docs/images/set_operation_flow.png
:align: centerAmazing examples
================In `examples folder `_ you can check different use cases:
- `Sanic, Aiohttp and Tornado `_
- `Python object in Redis `_
- `Custom serializer for compressing data `_
- `TimingPlugin and HitMissRatioPlugin demos `_
- `Using marshmallow as a serializer `_
- `Using cached decorator `_.
- `Using multi_cached decorator `_.Documentation
=============- `Usage `_
- `Caches `_
- `Serializers `_
- `Plugins `_
- `Configuration `_
- `Decorators `_
- `Testing `_
- `Examples `_.. _redis: https://github.com/redis/redis-py
.. _aiomcache: https://github.com/aio-libs/aiomcache