我在单个线程(请求/响应)上要做很多计算。我怎样才能多线程这项工作?
问问题
89 次
3 回答
1
PHP 可以多线程
pthreads 不是 Posix 线程的接口,而是 PHP 5.3+ 的面向对象的线程 API
这并不是说创建线程以直接响应 Web 请求是一个好主意,但事实上;PHP 可以多线程。
于 2013-08-24T06:09:22.860 回答
1
于 2013-08-23T15:03:04.327 回答
0
- 进程间通信:http ://www.php.net/manual/en/intro.sem.php
- PHP 脚本中的 pthread 接口:http ://www.php.net/manual/en/intro.pthreads.php
于 2013-08-23T15:08:47.297 回答