Not compatible with query monitor
-
I am using nginx and php7, when enabling redis object cache plugin query monitor does not display the admin toolbar.
I had the same issue with php-apcu and it was fixed by making some functions public https://ww.wp.xz.cn/support/topic/incompatible-with-query-monitor-2/#post-8192088.
I tried the same thing with this plugin but it didn’t work. I’m not PHP developer so this was just best guess work.
class WP_Object_Cache { /** * The Redis client. * * @var mixed */ public $redis; /** * Track if Redis is available * * @var bool */ public $redis_connected = false; /** * Holds the non-Redis objects. * * @var array */ public $cache = array(); /** * Name of the used Redis client * * @var bool */ public $redis_client = null; /** * List of global groups. * * @var array */ public $global_groups = array( 'users', 'userlogins', 'usermeta', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss' ); /** * List of groups not saved to Redis. * * @var array */ public $ignored_groups = array( 'comment', 'counts' ); /** * Prefix used for global groups. * * @var string */ public $global_prefix = '';I would like to use query monitor to benchmark memcached, redis and apcu
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
The topic ‘Not compatible with query monitor’ is closed to new replies.
