1.开启和关闭mysql> set profiling=1;mysql> set profiling=0; information_schema 的 database 会建立一个PROFILING 的 table 记录. 2.执行一些语句(自定义语句)mysql>select * from navigation_sub where navPId<6 and navSName='公司介绍'; 3.查询语句执行时间mysql>show profiles; 扩展: mysql查询性
首先,前段时间利用手头的日本VPS搭建了一个google代理,访问速度还行,分享给大家: 谷歌 谷歌:guge119.com 谷歌学术:scholar.guge119.com 有时候我们在PHP性能优化的时候,需要知道某个函数的执行时间,在Python中,有timeit模块,在PHP中不知道有没有类似的模块? 于是,我自己写了一个简单的timeit函数,如下: /** * Compute the delay to execute a function a number of time * @pa