使用 Mysql Query Profiler 了解查询的执行时间和 php 脚本的性能

发布于 2024-07-23 05:53:35 字数 104 浏览 4 评论 0原文

我想在 php 脚本中使用 mysql 查询分析器。 因此,在我执行任何查询后,它需要显示查询的执行时间。

建议使用此功能的最佳方法,并共享任何其他脚本,例如查询分析器。

I would like to use mysql query profiler in the php script. So that after i execute any queries it need to display the execution time of the query.

Suggest the best way to use this also share any other scripts like query profiler.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

り繁华旳梦境 2024-07-30 05:53:35

之前:

在执行查询之前,您需要将 profiling 设置为 1 才能访问分析信息。

mysql_query("SET profiling = 1");

之后:

执行要测试的查询后,您需要执行以下查询。

$a = mysql_query("
     SELECT query_id, SUM(duration) AS duration 
     FROM information_schema.profiling
     GROUP BY query_id ORDER BY query_id DESC LIMIT 1
     ");

//in case you want to loop through more than one profile
while($b = mysql_fetch($a))
{
    echo 'ID: '.$b['query_id'].'<br>Duration: '.$b['duration'].' seconds';
}

有关更多信息: http://dev.mysql.com/ doc/refman/5.0/en/profiling-table.html

Before:

You need to set the profiling to 1 before you execute your query in order to get access to the profiling information.

mysql_query("SET profiling = 1");

After:

After you've executed the query you want to test you need to execute the following query.

$a = mysql_query("
     SELECT query_id, SUM(duration) AS duration 
     FROM information_schema.profiling
     GROUP BY query_id ORDER BY query_id DESC LIMIT 1
     ");

//in case you want to loop through more than one profile
while($b = mysql_fetch($a))
{
    echo 'ID: '.$b['query_id'].'<br>Duration: '.$b['duration'].' seconds';
}

For more information: http://dev.mysql.com/doc/refman/5.0/en/profiling-table.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文