Redis Cache が Not enabled になる理由
redis cache をインストールしてみたのだが、よくわからない状況になったので調べてみた
/* * * Checks if the `object-cache.php` drop-in exists * * @return bool */ public function object_cache_dropin_exists() { return file_exists( WP_CONTENT_DIR . '/object-cache.php' ); } |
どうやら、該当フォルダに object-cache.php がインストールできていないのが理由っぽい。
plugins/redis-cache/includes/ フォルダ にあったファイルをコピーしてみる。
とりあえず動くようになった?
Comments