We found during our investigation that most of the API response time is
consumed by JSON serialisation. This led us to investigate alternative
libraries during which time we found Netflix's json_fastapi library.
This has yielded performance improvements as good as 10x in some cases.
It introduced a new dependency oj for JSON parsing.
We found during our investigation that most of the API response time is consumed by JSON serialisation. This led us to investigate alternative libraries during which time we found Netflix's json_fastapi library.
This has yielded performance improvements as good as 10x in some cases. It introduced a new dependency
oj
for JSON parsing.Relates to #268