Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复:PHP 中的连接池和mysql中的连接池
我曾经在 $_SESSION 中恢复连接。
但发现它不好。
用 php 实现数据库池是不可能的,因为每个请求都运行在一个全新的进程中。在请求之间没有任何东西可以幸存。该库可能有自己的数据库池(在 mysql api 中,它称为持久连接)。不过对于 mysql 来说,这是没有意义的,因为建立新连接的成本微乎其微。
这不是微不足道的,无论技术如何,数据库连接都是连接数据库时最耗时的步骤。