Closed donmhico closed 1 year ago
This PR replaces the usage of wp_cache_get and wp_cache_set to use get_transient / set_transient to make sure we are caching certain DB queries and not doing DB calls on each page load.
wp_cache_get
wp_cache_set
get_transient
set_transient
Fixes #150.
SHOW TABLES LIKE %s
Description
This PR replaces the usage of
wp_cache_get
andwp_cache_set
to useget_transient
/set_transient
to make sure we are caching certain DB queries and not doing DB calls on each page load.Motivation
Fixes #150.
Testing procedure
SHOW TABLES LIKE %s
being called on each page load.