安装 pip3 install cachetools 常见缓存分类 class cachetools.Cache(maxsize, getsizeof=None) class cachetools.LRUCache(maxsize, getsizeof=None). Least Recently U
import json from json import JSONEncoder class Employee: def __init__(self, name, salary, address): self.name = name self.salary