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 enhancement related to a problem? Please describe.
Via support monitor, 10up experience plugin can provide alert/warning if object caching is not working properly, which can be either due to service down, configuration issue, or the object-cache drop-in missing. This alert/warning can help to avoid degraded performance issue.
Designs
On the systems side, we can check object-caching is working by using the wp-cli command like:
wp cache add zabbix 1
This will add a value 1 in zabbix and we can use below command and it should retrun 1
wp cache get zabbix
And then finally we remove the object by:
wp cache delete zabbix
We can use similar approach on the code side to validate the caching.
Describe alternatives you've considered
No response
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
Is your enhancement related to a problem? Please describe.
Via support monitor, 10up experience plugin can provide alert/warning if object caching is not working properly, which can be either due to service down, configuration issue, or the object-cache drop-in missing. This alert/warning can help to avoid degraded performance issue.
Designs
On the systems side, we can check object-caching is working by using the wp-cli command like:
wp cache add zabbix 1
This will add a value
1
inzabbix
and we can use below command and it should retrun1
wp cache get zabbix
And then finally we remove the object by:
wp cache delete zabbix
We can use similar approach on the code side to validate the caching.
Describe alternatives you've considered
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: