mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-24 20:47:54 +00:00
This is, for the majority of backends, the native format anyway, and so we save encoding and decoding when using the PickleCodec or if (in future) a orjson Coder was to be added. For the JsonCodec, the only thing that changed is the location where the JSON data is encoded to bytes and decoded back again to a string.
21 lines
608 B
Python
21 lines
608 B
Python
import abc
|
|
from typing import Optional, Tuple
|
|
|
|
|
|
class Backend:
|
|
@abc.abstractmethod
|
|
async def get_with_ttl(self, key: str) -> Tuple[int, Optional[bytes]]:
|
|
raise NotImplementedError
|
|
|
|
@abc.abstractmethod
|
|
async def get(self, key: str) -> Optional[bytes]:
|
|
raise NotImplementedError
|
|
|
|
@abc.abstractmethod
|
|
async def set(self, key: str, value: bytes, expire: Optional[int] = None) -> None:
|
|
raise NotImplementedError
|
|
|
|
@abc.abstractmethod
|
|
async def clear(self, namespace: Optional[str] = None, key: Optional[str] = None) -> int:
|
|
raise NotImplementedError
|