gpt4 book ai didi

html - 如何将网页保存在 Redis 缓存中以提高网站速度?

转载 作者:IT王子 更新时间:2023-10-29 06:06:23 24 4
gpt4 key购买 nike

有没有办法将网页HTML保存在redis缓存中,以供进一步使用和提高速度性能。

最佳答案

我可以提供基本的快照,你如何将页面内容存储到 redis 中并从 redis 中检索它。

$redis_key= md5("<full_url_of_webiste or $_SERVER[REQUEST_URI]>");
$output = $redis->get($redis_key);
if(empty($output ))
{
ob_start();
/*
Your all code here for page
*/
$output = ob_get_contents();
ob_clean();
$output = $redis->set($redis_key,$output);
}
echo $output;

关于html - 如何将网页保存在 Redis 缓存中以提高网站速度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39265940/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com