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.
我正在开发一个服务器应用程序,它使用 mysql 进行一些数据存储。我应该在服务器启动时创建与 mysql 的连接并将其用于所有查询,还是在每个查询上创建连接?哪个更好/更快?
如果你问我,最好只使用一个连接,这样你就可以毫无问题地使用会话变量。此外,使用静态变量,很容易将连接永久保存在脚本中的某个位置。