FastAPI默认使用Python的标准库来做json解析,如果换成rust编写的orjson,速度上会快一些
1. 安装依赖
pip install orjson
2. 设置为默认响应类型
from fastapi.responses import ORJSONResponse
app = FastAPI(title='xxx', default_response_class=ORJSONResponse)
FastAPI默认使用Python的标准库来做json解析,如果换成rust编写的orjson,速度上会快一些
1. 安装依赖
pip install orjson
2. 设置为默认响应类型
from fastapi.responses import ORJSONResponse
app = FastAPI(title='xxx', default_response_class=ORJSONResponse)
2024-07-22 01:07:18
2024-07-22 01:07:44
2024-07-22 01:07:13
2024-07-22 01:07:11
2024-07-22 01:07:11
2024-07-22 01:07:08
2024-07-22 01:07:07
2024-07-22 01:07:59
2024-07-22 01:07:56
2024-07-22 01:07:55