Stop using cache in MD_STD_CACHE when run from command line
This commit is contained in:
parent
35c0fe4723
commit
886acead63
|
@ -48,6 +48,8 @@ final class MD_STD_CACHE {
|
|||
*/
|
||||
public static function serve_page_through_redis_cache(string $redisKey, int $expiry = 3600):string {
|
||||
|
||||
if (PHP_SAPI === 'cli') return '';
|
||||
|
||||
$redis = new Redis();
|
||||
$redis->connect(self::$redis_host, self::$redis_port, 1, NULL, 0, 0, ['auth' => [MD_CONF::$redis_pw]]);
|
||||
if ($redis->ping() !== false) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user