10up-experience icon indicating copy to clipboard operation
10up-experience copied to clipboard

Notification for Object Caching

Open engrshakirali opened this issue 2 years ago • 0 comments

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

  • [X] I agree to follow this project's Code of Conduct

engrshakirali avatar Nov 02 '22 17:11 engrshakirali