为什么构建 PDO 连接很慢?

Why is constructing PDO connection slow?(为什么构建 PDO 连接很慢?)
本文介绍了为什么构建 PDO 连接很慢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在我的 PHP 应用程序中使用 PDO.它连接到同一服务器上的 MySQL 服务器:

I'm using PDO in my PHP application. It connects to a MySQL server on the same server:

$db = new PDO(mysql:host=localhost;dbname=test, $username, $password);

我创建了两个具有相同输出的页面(只是一些纯 html 中的虚拟数据),其中一个包含创建 PDO 的调用.如果我打开不使用连接的页面,响应速度会快 0.5 到 1 秒.

I created two pages with the same output (just some dummy data in plain html) one of which contains the call to create PDO. If I open the page that uses no connection the response is between 0.5 and 1 second quicker.

推荐答案

我一直在做一些谷歌搜索,并且在阅读了这个线程,我把localhost改成了127.0.0.1.这解决了问题....

I've been doing some googling, and after reading this thread, I changed localhost to 127.0.0.1. That solves the problem....

这篇关于为什么构建 PDO 连接很慢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Why can#39;t I update data in an array with foreach loop?(为什么我不能用 foreach 循环更新数组中的数据?)
Foreach for arrays inside of an array(Foreach 用于数组内的数组)
PHP array get next key/value in foreach()(PHP 数组在 foreach() 中获取下一个键/值)
Using preg_match on a multidimensional array to return key values arrays(在多维数组上使用 preg_match 返回键值数组)
php foreach as key, every two number as a group(php foreach 为key,每两个数字为一组)
Treat a PHP class that implements Iterator as an array(将实现 Iterator 的 PHP 类视为数组)