- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道 PDO 的连接池是如何工作的,而且我的搜索一无所获。
首先,为了清楚起见,PDO 的连接池是自动的吗?
如果没有,我如何在 AJAX 页面上使用它?
我计算了我的本地 wampserver 开发人员通过 mysqli 建立数据库连接的时间成本,每次 10 毫秒,并且我正在努力使等待时间尽可能接近 0。这是我的最后一期。
最佳答案
如果您谈论的是持久连接,请看这里:http://php.net/manual/en/pdo.connections.php
Do persistent connections remain open across different AJAX requests?
是的,而且它们永远不会被重复使用的风险。感谢@carefulnow。我将在这里引用他的评论:
Persistent connections and connection pooling are not the same thingConnection pooling creates a lot of connections to start with, and then the application just grabs one of those already established connections. Persistent connections do establish new connections, but they do not close unless explicitly told to (a normal connection will close at the end of the script). Persistent connections are dangerous if not used carefully, as most databases implement a maximum connections count, and will refuse further connections when hit. For most cases, a normal connection (just calling the PDO constructor with a DSN and login details) will be fine.
I'll explain it by showing the PHP code, and the resulting connection count in the MariaDB console monitor. Look at the following screenshots, and pay attention the the "run count" in the bottom right. You'll see when using persistent connections, connections do not close, but instead go into sleep mode. Ignore connection #231, that's the console monitor's. http://i.imgur.com/IL42tjF.png, http://i.imgur.com/aDvl7F7.png, http://i.imgur.com/IuFEEvO.png. As you can see, the time column indicates the length of inactivity, not the length of time connected, hence the console monitor's time is always zero, because I've just executed SHOW PROCESSLIST;. I hope this clears everything up a bit, database connection management is quite tricky sometimes.
因此查看屏幕截图问题是开放的,如何再次拾取这些持久连接。 StackOverflow 上的一些答案说,它们是在线程级别缓存的,因此如果您有多个线程(这是非常期望的),那么您会获得很多连接。这打开了遇到 mysql 连接限制的风险。在使用持久连接之前,确保你了解它们是如何工作的(我不知道,但看起来@carefulnow :-))
Is it possible to set a persistent connection to expire?
PHP 文档说它们已被缓存,因此我假设它们会在一段时间后被清理。
关于php - PDO 连接池与 AJAX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14248043/
PHP查询: prepare('SELECT * FROM Locations WHERE user_id = :id LIMIT 0, 5'); $query->bindParam(":id
到目前为止我一直在使用 PDO->bindParam 但是在阅读手册时我发现 PDO->bindValue 我可以告诉 PDO->bindValue 按值传递,而 PDO->bindParam 按引用
我使用PDO进行MySQL数据库连接、选择、更新和删除。 但是我在选择带有特殊字符的行时遇到问题,例如,我想选择带有“Judge-Fürstová Mila”的页面标题, 表页, id titl
我使用的是 PHP 5.2.9 和 Apache 2.2.11 以及 mysql 5.1.32 为什么我不能禁用 PDO::ATTR_EMULATE_PREPARES ? 下面是代码: false)
当 PDO::ATTR_PERSISTENT = true 时,PDO::exec 和 PDO::query 之间似乎存在差异。当使用PDO::exec时,连接将不会被重用,并最终导致MySQL出现“
我正在尝试调整 Zend Skeleton App 以使用 ODBC 连接。我能够在 Zend 之外设置 PDO 连接(同一个表、服务器、所有内容),如下所示: new PDO('odbc:DRIVE
我正在使用 XAMPP 3.2.1 在 Windows 7 上使用 PDO,但在使其正常工作时遇到问题,即使它可以在我的共享托管服务器。 settings.php db.php setAttribu
我正在尝试使用以下代码从 get 变量中获取结果,我使用了另一个代码(在下面列出)并且它有效但是在使用它时无法逃脱,我不知道我有什么做错了,但我需要帮助,我刚刚开始 PDO,所以是的,我是个白痴 :D
我有这个代码 try { $dbh = new PDO('mysql:host=localhost;dbname=db_informations', 'root', ''); $dbh
在我的本地开发机器 (MAMP) 上,我的 MySQL 查询返回正确的大小写。但是,在我的共享托管服务器上,使用 fetch(PDO::FETCH_ASSOC); 时,我的结果是小写的 我试过以下方法
我正在使用这个 PDO 连接: try{ $db=new PDO(" mysql:host=localhost; dbname=...", "dbu...", "pass", array(PDO::M
我需要将 PDO 连接从 controller 传递到 cart 类, function __construct($connection) { $this->cart = new cart($
位于 PHP.net 的 PDO 交易示例表明 PDO::exec() 是事务处理的,但是没有这样的例子使用 PDO::query()。 事务是否涵盖 PDO::query()? 此外,据我所知,PD
几天来我一直在使用来自 http://www.mamp.info 的 MAMP Pro 3.07 . 很棒的工具,一切正常。 但是现在我遇到了问题,对于一个新项目,我需要连接到 MSSQL。 我在 w
我正在尝试在我的 PHP 代码中使用 PDO 模块来连接到数据库。我已经阅读并搜索了类似的主题,但我无法弄清楚我做错了什么。请帮我解决问题。 Apache版本:Apache/2.2.21 (Win32
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我使用 PDO 连接到我的数据库,我不知道哪种方法比更新、删除和插入、PDO::exec 或 PDO::excute 的另一种方法更好。我应该使用哪个? 最佳答案 虽然这两种方法具有相似的命名(exe
如何在 Codeigniter 中设置 PDO 数据库句柄的属性(PDO::ATTR_ERRMODE)? 最佳答案 我认为更好的选择是使用 MY_Model(然后您对其进行扩展,然后它在整个应用程序中
从 mysql 切换到 PDO 我注意到 fetch 方法改变了 PDO 对象本身!例如: $res=$ps->fetchAll(); echo($res[0]['Mail']); //it'ok /
嗨,我正在使用 PDO 为 mysql 开发一个基本的数据库连接类,但是当我 var dump 返回结果时,它告诉我我有 2 个对象:object(PDO)[2]。不应该只有一个吗? 这是迄今为止我的
我是一名优秀的程序员,十分优秀!