本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

Xdebug远程自动启动导致卡顿?如何解决?

网络教程 app 1℃

Xdebug远程自动启动导致卡顿如何解决

xdebug卡顿问题探析:remote autostart的陷阱

对于使用xdebug调试php应用程序的开发者,可能会遇到这样一个问题:将xdebug.remote_autostart设置为1后,所有请求都会卡顿,甚至直接导致504错误。

症结所在

当xdebug.remote_autostart启用时,xdebug会在所有请求开始时自动启动远程调试会话,即使没有设置明确的断点。在没有断点的情况下,这会导致xdebug持续检查传入的请求,导致应用程序响应延迟。

解决方案

为了解决这个问题,可以在不携带cookie或会话id的情况下,通过get或post参数传递xdebug_session_start参数来启动远程调试会话。

    get请求:在请求url后面附加?xdebug_session_start=1,例如:

    example./index.php?xdebug_session_start=1

    post请求:在请求正文中使用xdebug_session_start参数,例如:

    $data = array(‘XDEBUG_SESSION_START’ => 1); $options = array( ‘http’ => array( ‘method’ => ‘POST’, ‘content’ => http_build_query($data) ), ); $context = stream_context_create($options); file_get_contents(‘example./index.php’, false, $context);

参考文档

更多有关xdebug远程调试配置的信息,请参阅官方文档:[xdebug: step debugging](xdebug.org/docs/step_debugging)

以上就是Xdebug远程自动启动导致卡顿?如何解决?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » Xdebug远程自动启动导致卡顿?如何解决?

喜欢 (0)