当前位置:Gxlcms > PHP教程 > Mysql数据库的反复connect与close问题

Mysql数据库的反复connect与close问题

时间:2021-07-01 10:21:17 帮助过:87人阅读

用php开发app API,每个API大致实现一个功能,但每个功能都需要和Mysql数据库通信。app使用过程中每次访问API是否都需要connect Mysql?这样反复链接与断开会不会影响数据查询的性能呢?

回复内容:

用php开发app API,每个API大致实现一个功能,但每个功能都需要和Mysql数据库通信。app使用过程中每次访问API是否都需要connect Mysql?这样反复链接与断开会不会影响数据查询的性能呢?

单例模式去写这个数据库操作类

public static function getConn($database) {
        static $singletons = array();
        !isset($singletons[$database]) && $singletons[$database] = new Database($database);
        return $singletons[$database];
    }

人气教程排行