Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将 CherrPy 服务器用作阻塞/非线程服务器(以便于调试?)
不。 wsgiserver 不仅会启动自己的一组工作线程(默认情况下为 10 个,而且即使您只指定 1 个,它仍然是 1 个用于侦听套接字的线程和 1 个工作线程)。即使这不是真的,如果您使用 CherryPy 的其余部分(即引擎),它会在与主线程不同的线程中运行该 1 个侦听器线程。