使用 Mysql Query Profiler 了解查询的执行时间和 php 脚本的性能
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
之前:
在执行查询之前,您需要将
profiling
设置为1
才能访问分析信息。之后:
执行要测试的查询后,您需要执行以下查询。
有关更多信息: http://dev.mysql.com/ doc/refman/5.0/en/profiling-table.html
Before:
You need to set the
profiling
to1
before you execute your query in order to get access to the profiling information.After:
After you've executed the query you want to test you need to execute the following query.
For more information: http://dev.mysql.com/doc/refman/5.0/en/profiling-table.html