Heim >Backend-Entwicklung >PHP-Tutorial >Mysql数据库的反复connect与close问题

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

WBOY
WBOYOriginal
2016-06-06 20:17:171988Durchsuche

用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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn