讨论数量:
其实也不是卡,而是你这个,会创建数据库连接,然后从中获取指定的 Users 记录。所以如果你觉得慢,可能从另外一种角度来说,慢的时间是数据库连接的时间。
@小旭 不妨把日志加起来,包括 sql 的日志。我们一般的排查方法就是通过日志,在程序 boot 的时候挂一个钟表实例注册到 app 中,每隔一段代码就去问一下他,到目前为止过了多久了,并写到日志中。以下是挂钟的实现:
class WallTime
{
/**
* 默认标记长度
*/
const MARK_LENGTH_DEFAULT = 6;
/**
* 慢日志默认超时时间
*/
const SLOW_LOG_TIMEOUT_DEFAULT = 3;
/**
* @var float 挂钟时间
*/
protected $wallTime;
/**
* @var string 标识
*/
protected $mark;
/**
* @var array 日志数据
*/
protected $log = [];
/**
* 构造函数
*
* @param int $markLength
*/
public function __construct(int $markLength = self::MARK_LENGTH_DEFAULT)
{
$this->wallTime = microtime(true);
$this->mark = Str::random($markLength);
}
/**
* 经过时间
*
* @return float
*/
public function delay(): float
{
return round(microtime(true)-$this->wallTime,2);
}
/**
* 获取标识
*
* @return string
*/
public function mark(): string
{
return $this->mark;
}
/**
* 记录日志
*
* @param array $data
*/
public function info(array $data = [])
{
info($this->message(), $data);
}
/**
* 慢日志
*
* @param array $data
* @param int $timeout
*/
public function slow(array $data = [], int $timeout = self::SLOW_LOG_TIMEOUT_DEFAULT)
{
$this->log[] = [
$this->message(),
$data,
];
if ($this->delay() > $timeout) {
foreach ($this->log as $item) {
info($item[0],$item[1]);
}
$this->log = [];
}
}
/**
* 消息体
*
* @return string
*/
protected function message(): string
{
$delay = $this->delay();
return "$this->mark\t$delay";
}
}
然后通过 AppServiceProvider
注册到 app 中
$this->app->instance('wallTime', new WallTime());
// 以下是给队列任务加的挂钟,用不到可以不加
Queue::before(function (JobProcessing $event) {
$this->app->instance('wallTime', new WallTime());
});
定位程序中执行缓慢的位置
resolve('wallTime')->slow([__FILE__, __LINE__]);
SQL 日志则可以添加查询事件的监听器:
public function handle(QueryExecuted $event)
{
// 监听查询执行事件,里面 $event->time 保存着查询执行的时间
}
推荐文章: