gpt4 book ai didi

php - 启用 PHP APC 查询缓存

转载 作者:可可西里 更新时间:2023-10-31 23:20:26 24 4
gpt4 key购买 nike

我已经编写了我的第一个功能性 PHP 网络应用程序,名为 Heater。它使用 Google Charts 呈现交互式日历热图库和 AWS Redshift backend .

现在我已经开始工作了,我已经开始提高性能了。我已经安装了 APC 并验证它可以正常工作。

我的问题是如何在 Redshift 之前启用查询缓存?

这是我现在如何加载数据的示例:

getRsData.php:



<?php
$id=$_GET["id"];
$action=$_GET["action"];
$connect = $rec = "";
$connect = pg_connect('host=myredshift.redshift.amazonaws.com port=5439 dbname=mydbname user=dmourati password=mypasword');
if ($action == "upload")
$rec = pg_query($connect,"SELECT date,SUM(upload_count) as upload_count from dwh.mytable where enterprise_id='$id' GROUP BY date");
...

?>

一些查询需要超过 5 秒,这会对用户体验产生负面影响。数据移动缓慢,因为它每天只更新一次。我想用本地 APC 缓存在 Redshift 查询前面,然后每天通过 cron(或类似的)使它无效,以允许更新的数据流入。我最终想创建一个缓存预热脚本,但是目前没有必要。

任何指向文档的指示或提示都是有帮助的。我花了一些时间在谷歌上搜索,但大多数文档都只是关于文档缓存而不是查询缓存,如果这有意义的话。这是一个运行 AWS Linux 和 PHP 5.3 的独立主机,带有 apc-3.1.15。

谢谢。

编辑以添加输入验证

if (!preg_match("/^[0-9]*$/",$id)) {
$idErr = "Only numbers allowed";
}

if (empty($_GET["action"])) {
$actionErr = "Action is required";
} else {
$action = test_input($action);
}

function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}

最佳答案

这似乎不需要 APC,因为您要缓存一天相对较长的数据。

下面的代码将您的查询结果缓存在一个文件中 ($cache_path)。在查询 redshift 之前,它会检查给定企业 ID 的缓存文件是否存在并在同一天创建。如果是,并且代码可以成功检索缓存,则从缓存中返回行,但如果文件不存在或无法从缓存中检索行,代码将查询数据库并写入缓存.

查询/缓存的结果在$rows中返回

<?php
$id=$_GET["id"];
$action=$_GET["action"];
$connect = $rec = "";
$connect = pg_connect('host=myredshift.redshift.amazonaws.com port=5439 dbname=mydbname user=dmourati password=mypasword');
if ($action == "upload") {

$cache_path = "/my_cache_path/upload_count/$id";

if(!file_exists($cache_path)
|| date('Y-m-d',filemtime($cache_path)) < date('Y-m-d')
|| false === $rows = unserialize(file_get_contents($cache_path))) {

$rows = array();

$rec = pg_query($connect,"SELECT date,SUM(upload_count) as upload_count from dwh.mytable where enterprise_id='$id' GROUP BY date");
while($r = pg_fetch_assoc($rec)) {
$rows[] = $r;
}

file_put_contents($cache_path,serialize($rows));
}
}
?>

关于php - 启用 PHP APC 查询缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23862130/

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