Let serve_page_through_redis_cache return string
This commit is contained in:
parent
57da808a6a
commit
a38c3c6fae
|
@ -23,9 +23,9 @@ final class MD_STD_CACHE {
|
||||||
* @param string $redisKey Key to cache by in redis.
|
* @param string $redisKey Key to cache by in redis.
|
||||||
* @param integer $expiry Expiration time in seconds.
|
* @param integer $expiry Expiration time in seconds.
|
||||||
*
|
*
|
||||||
* @return boolean
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function serve_page_through_redis_cache(string $redisKey, int $expiry = 3600):bool {
|
public static function serve_page_through_redis_cache(string $redisKey, int $expiry = 3600):string {
|
||||||
|
|
||||||
$redis = new Redis();
|
$redis = new Redis();
|
||||||
$redis->connect(self::$redis_host, self::$redis_port, 1, NULL, 0, 0, ['auth' => [MD_CONF::$redis_pw]]);
|
$redis->connect(self::$redis_host, self::$redis_port, 1, NULL, 0, 0, ['auth' => [MD_CONF::$redis_pw]]);
|
||||||
|
@ -34,9 +34,8 @@ final class MD_STD_CACHE {
|
||||||
ob_start();
|
ob_start();
|
||||||
|
|
||||||
if (($redisResult = $redis->get($redisKey))) {
|
if (($redisResult = $redis->get($redisKey))) {
|
||||||
echo $redisResult;
|
|
||||||
$redis->close();
|
$redis->close();
|
||||||
return true;
|
return $redisResult;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
|
@ -58,7 +57,7 @@ final class MD_STD_CACHE {
|
||||||
}
|
}
|
||||||
$redis->close();
|
$redis->close();
|
||||||
|
|
||||||
return false;
|
return '';
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user