app = FastAPI() lock: Optional[asyncio.Lock] = None spider = Spider() @app.get('/xxx') async def xxx(s: str): t1 = time() await lock.acquire() t2 = time() r ...
確定! 回上一頁