mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 11:52:18 +00:00
18 lines
446 B
Python
18 lines
446 B
Python
import json
|
|
|
|
from typing import Any, Dict
|
|
from cachetools import TTLCache
|
|
|
|
__all__ = ('Cache',)
|
|
|
|
class Cache:
|
|
def __init__(self, maxsize: int, ttl: int) -> None:
|
|
self.cache = TTLCache(maxsize, ttl)
|
|
|
|
async def get(self, key) -> Dict[str, Any]:
|
|
data = self.cache.get(key)
|
|
return json.loads(data) if data is not None else data
|
|
|
|
async def set(self, key, value) -> None:
|
|
self.cache[key] = json.dumps(value)
|