mysqli persistent connection(mysqli 持久连接)
问题描述
简而言之,是否有某种 mysqli_pconnect 用于高使用率的 PHP &MySQL 服务器,还是我需要坚持使用未改进的 mysql?如果是这样,他们为什么要删除它?
In short, is there some sort of mysqli_pconnect for high-usage PHP & MySQL servers, or do I need to stick with mysql unimproved? And if so, why did they remove it?
推荐答案
对此的支持是在 PHP 5.3 中引入的.对于此之前的版本,PDO 和 - 上帝保佑 - mysql 扩展是唯一的选择.
Support for this was introduced in PHP 5.3. For versions before this, PDO and – god forbid – the mysql extension are the only options.
引用手册:
与mysql扩展不同,mysqli没有提供单独的开启持久连接的功能.要打开持久连接,您必须在连接时将 p: 添加到主机名.
Unlike the mysql extension, mysqli does not provide a separate function for opening persistent connections. To open a persistent connection you must prepend p: to the hostname when connecting.
这篇关于mysqli 持久连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysqli 持久连接
基础教程推荐
- 如何替换eregi() 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
