We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The avarage GET /api/v1/course/active takes 450ms (p90) and does 1046(!) SQL queries. This one comes up a lot:
GET /api/v1/course/active
select exam0_.id, exam0_.course, exam0_.date, exam0_.including_answers, exam0_.name from exam exam0_ left outer join course course1_ on exam0_.course = course1_.code where course1_.code = ?
I think simple some optimisations (eager fetching) should take care of this and improve performance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The avarage
GET /api/v1/course/active
takes 450ms (p90) and does 1046(!) SQL queries. This one comes up a lot:I think simple some optimisations (eager fetching) should take care of this and improve performance.
The text was updated successfully, but these errors were encountered: