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
Is your feature request related to a problem? Please describe.
MySQL/MariaDB has a Query Cache that can speed the user interface if enabled. However, enabling that Query Cache on large systems impose a heavy tax on data collection adding a 30% margin to the time required for the Cacti poller to complete.
Describe the solution you'd like
Add the SQL_NO_CACHE directive to all Script Server script calls. So, basically instead of:
SELECT value FROM blah WHERE blah ='blahblah';
Do the following:
SELECT SQL_NO_CACHE FROM blah WHERE blah ='blahblah';
Describe alternatives you've considered
Turning on the Query Cache, which is a non-starter until such time as this is fixed.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
MySQL/MariaDB has a Query Cache that can speed the user interface if enabled. However, enabling that Query Cache on large systems impose a heavy tax on data collection adding a 30% margin to the time required for the Cacti poller to complete.
Describe the solution you'd like
Add the
SQL_NO_CACHE
directive to all Script Server script calls. So, basically instead of:Do the following:
Describe alternatives you've considered
Turning on the Query Cache, which is a non-starter until such time as this is fixed.
The text was updated successfully, but these errors were encountered: