You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you for the App, is very useful.
We have been tuning our DB, and checking all the NextCloud queries, we found thousands of simultaneous repeated queries for every connected user like:
SELECT * FROM oc_termsofservice_sigs WHERE user_id = 'XXX'
It seems that it checks multiples times the same check for every user instead of one per page/session/connection. It is the normal behaviour to check multiple times the same on a single web page reload?
We use the latest 26 branch + php 8.1 + latest MariaDB galera Cluster 10.6 branch + Ubuntu 22.04 LTS.
Thank you!
The text was updated successfully, but these errors were encountered:
rdlab-upc
changed the title
Repeated BD requests SELECT * FROM oc_termsofservice_sigs WHERE user_id = 'XXXXX'
Repeated DB requests SELECT * FROM oc_termsofservice_sigs WHERE user_id = 'XXXXX'
Sep 4, 2023
Hello,
First of all, thank you for the App, is very useful.
We have been tuning our DB, and checking all the NextCloud queries, we found thousands of simultaneous repeated queries for every connected user like:
SELECT * FROM
oc_termsofservice_sigs
WHEREuser_id
= 'XXX'It seems that it checks multiples times the same check for every user instead of one per page/session/connection. It is the normal behaviour to check multiple times the same on a single web page reload?
Could be related with #766 Is the checker recalculating the same checks all the time?
We use the latest 26 branch + php 8.1 + latest MariaDB galera Cluster 10.6 branch + Ubuntu 22.04 LTS.
Thank you!
The text was updated successfully, but these errors were encountered: