impactoss / impactoss-server

IMPACT OSS - server-side application & API
https://demo.impactoss.org
MIT License
3 stars 8 forks source link

Switch IndicatorsController to json_fastapi #292

Closed parndt closed 6 years ago

parndt commented 6 years ago

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