mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-24 20:47:54 +00:00
17 lines
401 B
Python
17 lines
401 B
Python
import abc
|
|
from typing import Tuple
|
|
|
|
|
|
class Backend:
|
|
@abc.abstractmethod
|
|
async def get_with_ttl(self, key: str) -> Tuple[int, str]:
|
|
raise NotImplementedError
|
|
|
|
@abc.abstractmethod
|
|
async def get(self, key: str) -> str:
|
|
raise NotImplementedError
|
|
|
|
@abc.abstractmethod
|
|
async def set(self, key: str, value: str, expire: int = None):
|
|
raise NotImplementedError
|