用php开发app api,每个api大致实现一个功能,但每个功能都需要和mysql数据库通信。app使用过程中每次访问api是否都需要connect mysql?这样反复链接与断开会不会影响数据查询的性能呢?
用php开发app api,每个api大致实现一个功能,但每个功能都需要和mysql数据库通信。app使用过程中每次访问api是否都需要connect mysql?这样反复链接与断开会不会影响数据查询的性能呢?
单例模式去写这个数据库操作类
<code>public static function getConn($database) {
static $singletons = array();
!isset($singletons[$database]) && $singletons[$database] = new Database($database);
return $singletons[$database];
}</code>
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号