about qps · Issue #1110 · tiangolo/fastapi

Description The simple get 'hello world' server crashed when I send more than 510 requests in a second to the fastAPI. from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): ret...