Install, activate and enable with wp plugin install --activate wp-redis && wp redis enable
Install, activate and enable with wp plugin install --activate wp-redis && wp redis enable
WP Redis v0.5.0: Performance boost! Removes redundant exists call from wp_cache_get(), which easily halves the number of Redis calls.
It’s important to note that a persistent object cache isn’t a panacea – a page load with 2,000 Redis calls can be 2 full seconds of object cache transactions. Make sure you use the object cache wisely: keep to a sensible number of keys, don’t store a huge amount of data on each key, and […]
A quote I put together for an upcoming Pantheon whitepaper on scaling WordPress. Used appropriately, a persistent object cache like Redis or Memcached can be an incredibly helpful tool for scaling your WordPress site. Say, for instance, you have an unavoidable query which takes an entire second to run. Or, you need to make an […]
WP Redis v0.3.0: Cache Groups. Use define( ‘WP_REDIS_USE_CACHE_GROUPS’, true ); and wp_cache_delete_group( $group ); to easily purge all keys of a cache group.