mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-24 20:47:54 +00:00
first commit
This commit is contained in:
16
fastapi_cache/backends/__init__.py
Normal file
16
fastapi_cache/backends/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user