gpt4 book ai didi

CakePhp 3.0 使用共享主机(hostgator)时速度较慢

转载 作者:行者123 更新时间:2023-12-02 12:52:36 25 4
gpt4 key购买 nike

从 hostgator 在服务器上正常安装 cakePHP 3.1 后,我在 50 秒或 1 分钟内收到加载网站的响应。

我尝试重做缓存权限。

最佳答案

hostgator的问题是MySQL的版本。他们使用旧版本并通过“information_schema”呈现延迟。我的解决方案是对“information_schema”的整个调用进行评论,这不是理想的选择,但有效。

该文件的路径是:{my_app}/vendor/cakephp/cakephp/src/Database/Schema/MysqlSchema.php

public function describeForeignKeySql($tableName, $config)
{
/* Commented by hsoberon to fix the delay in HOSTGATOR */
// $sql = 'SELECT * FROM information_schema.key_column_usage AS kcu
// INNER JOIN information_schema.referential_constraints AS rc
// ON (
// kcu.CONSTRAINT_NAME = rc.CONSTRAINT_NAME
// AND kcu.CONSTRAINT_SCHEMA = rc.CONSTRAINT_SCHEMA
// )
// WHERE kcu.TABLE_SCHEMA = ? AND kcu.TABLE_NAME = ? AND rc.TABLE_NAME = ?';

// return [$sql, [$config['database'], $tableName, $tableName]];
}

这样延迟就解决了,一切都运行良好。到目前为止。

关于CakePhp 3.0 使用共享主机(hostgator)时速度较慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36018318/

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