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-08-27 09:08:17
2024-05-09 11:05:34
2024-06-06 10:06:47
2024-04-22 09:04:34
2024-03-29 15:03:20
2024-04-20 17:04:38
2024-05-10 08:05:15
2024-10-30 21:10:12