Yes, I recommend PHP 7 and PhpRedis 3.0.0 for optimal performance.
To clarify – I’ve build phppredis from source and installed but not via PECL.
(running an older distro)
-
This reply was modified 9 years, 6 months ago by
csmicfool.
That should work. If not, let me know.
The plugin appears to still default to predis. If I update the config to “pecl” like so, it still uses predis:
define(‘WP_REDIS_CLIENT’,’pecl’);
Testing out some naked calls against phpredis to be sure it’s not on my end too.
Can you make sure PhpRedis is installed by running:
<?php var_dump( class_exists( 'Redis' ) ); ?>
I solved it. Was related to TLS support (using Azure Redis).
Appreciate the fast responses.