简体   繁体   中英

Isolated debugging session with PyDev

I'm using Eclipse + PyDev to work on python web projects. Sometimes I need to run debug session on production server rather then locally, due to specific environment. I was wondering if there is a way to run isolated remote debugging session, so the other users don't experience any issues, and code execution doesn't suspend for them?

Thanks.

我不认为这是开箱即用的...您需要构建生产服务器,以使这成为可能(即:当您发送给定请求时,它应该产生另一个解释器来处理您的请求)用于调试目的并在调试会话结束后关闭该解释器),但是您必须确保该调试器实际上将在单独的解释器中运行,否则最终可能会从其他人那里追踪到更多东西(最好的情况是, d只会使事情变慢,更糟的是,由于调试器与您的代码进行某些交互,最终可能会导致意想不到的后果。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM