Asynchronous cache manager designed for horizontally scaled web applications.
Project description
Introduction
Asynchronous cache manager designed for horizontally scaled web applications. NOTE: Currently has implementation only for FastAPI using Redis.
Requirements
Python 3.7+
Installation
$ pip install atomcache
---> 100%
Explanation schema
As UML
@startuml
!theme materia
participant Redis
participant Instance_A as A
participant Instance_B as B
participant Instance_N as C
B <-> Redis: GET: Cache=null & GET: Lock=null
B <-> Redis: SET: Lock = true
activate B #Red
A <--> Redis: GET: Cache=null & GET: Lock=true
activate A #Transparent
C <--> Redis: GET: Cache=null & GET: Lock=true
activate C #Transparent
B <--> B: Do the computation
B -> Redis: SET: Cache={...}
deactivate B
group Notify Cache SET
Redis -> C
Redis -> A
end
group GET Cache
Redis <-> C
deactivate C
Redis <-> A
deactivate A
end
@enduml
Examples:
Usage as FastAPI Dependency
- Create a file
events.py
with:
from typing import Optional, Callable
import aioredis
from fastapi import FastAPI, Depends
from atomcache import Cache
def create_start_app_handler(app: FastAPI) -> Callable:
async def start_app() -> None:
redis: aioredis.Redis = await aioredis.from_url(url="redis://localhost", encoding="utf-8")
await Cache.init(app, redis)
return start_app
def create_stop_app_handler(app: FastAPI) -> Callable:
async def stop_app() -> None:
await Cache.backend.close()
return stop_app
- Create a file
main.py
with:
from typing import Optional
from fastapi import FastAPI, Depends
from atomcache import Cache
from .events import create_start_app_handler, create_stop_app_handler
app = FastAPI()
app.add_event_handler("startup", create_start_app_handler(app))
app.add_event_handler("shutdown", create_stop_app_handler(app))
@router.get("/resources", response_model=List[TheResponseModel], name="main:test-example")
async def resources(offset: int = 0, items: int = 10, cache: Cache = Depends(Cache(exp=600)):
cache_id = f"{offset}-{items}" # Build cache identifier
await cache.raise_try(cache_id) # Try to respond from cache
response = await db.find(TheResponseModel, skip=offset, limit=items)
await asyncio.sleep(10) # Do some heavy work for 10 sec, see `lock_timeout`
return cache.set(response, cache_id=cache_id)
Direct cache usage for avoiding repetitive calling on external resources:
from aiohttp import ClientSession
from atomcache import Cache
cache = Cache(exp=1200, namespace="my-namespace:")
async def requesting_helper(ref: str) -> List[dict]:
cached_value = await cache.get(cache_id=ref)
if cached_value is not None:
return cached_value
async with ClientSession() as session:
async with session.get(f"https://external-api.io/{ref}") as response:
if response.ok:
cached_value = response.json()
return cache.set(cached_value, cache_id=ref)
return []
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
atomcache-0.7.0.tar.gz
(9.7 kB
view details)
Built Distribution
File details
Details for the file atomcache-0.7.0.tar.gz
.
File metadata
- Download URL: atomcache-0.7.0.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.6 Linux/5.16.11-051611-lowlatency
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 313ed558f2c6d52987ed997dba3549b9f13b95691a6daccc3ba6d81a524bda6e |
|
MD5 | 716b68ed30cbad7f875e9e4956d35092 |
|
BLAKE2b-256 | 000aab8675b9c313d0320011922380adadaac2778f4f999e57f404adaf1cb851 |
File details
Details for the file atomcache-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: atomcache-0.7.0-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.6 Linux/5.16.11-051611-lowlatency
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04924eb993e3d25a4128c23b0a968bbc42ab046b24250b0d05a1efcda9396d18 |
|
MD5 | 4e865975dbd8b861f1fd0f8d04c74e3b |
|
BLAKE2b-256 | 852982c2e19bfd899fbdcb284095dbec8c6b2176c05d49708d2137fbd924cc3e |