• Was having hard time with memcached as many of the objects were larger in size than memcached can handle(greater than 1MB). So those queries were being repeated on the MySQL server with the same results. After switching to redis, needed to find out a plugin that just works. Reviewed the code of this plugin and voilà. Tested it out on one site, and subsequently added it to another 30 sites, more on the way. Using and configuring it is quite easy with WP CLI.

    wp config set WP_REDIS_DATABASE {DifferentDBNumberForEachSite} --raw
    wp config set WP_CACHE_KEY_SALT {RandomUniqueString}
    wp plugin install --activate redis-cache
    wp redis enable

    Thanks Till Krüss for the such an awesome plugin ??

    • This topic was modified 5 years, 1 month ago by Gagan Deep Singh. Reason: Change code quotes
  • The topic ‘Works as advertised, no fuss no muss’ is closed to new replies.