使用 PHP 是否需要学习信号量和线程?
是否有必要学习信号量和线程才能使用 PHP?
Is it necessary to learn semaphores and threading in order to work with PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有必要学习信号量和线程才能使用 PHP?
Is it necessary to learn semaphores and threading in order to work with PHP?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
不。事实上,PHP 中的线程确实很麻烦,并且不建议用于 Web 脚本编写,因为大多数 Web 服务器不支持它(带有 mod_php 的 Apache 无法以可靠的方式分叉 PHP 线程)。
No. In fact, threading in PHP is a real hassle and not recommended for web scripting anyway since most web servers don't support it (Apache with mod_php cannot fork PHP threads in a reliable manner).
除非您要在 PHP 中执行 CLI 脚本(这是一项非常流行的任务),否则不会。
如果您要编写从命令行(而不是通过网络服务器)运行的 PHP 脚本,那么这些脚本会非常方便。您可能还想看看
fork()
甚至可能socket_select()
如果您遇到更复杂的事情。您可以通过 CLI 做很多事情,多线程和分叉肯定会有很大帮助。
Unless you're going to do CLI scripts in PHP (which is a pretty popular task), then no.
If you are going to write PHP scripts that will be run from the command line (not through a webserver), these can be very handy. You might also want to take a look at
fork()
and maybe evensocket_select()
if you get into more complicated stuff.There's a world of things you can do from the CLI, and multithreading and forking will certainly help a lot.
不,当然不适用于常见的网络内容。
No, certainly not for the usual web stuff.