Functional API
The parallel\Runtime API provides a great degree of control to the power PHP programmer, and those intimately familiar with writing applications that use parallel concurrency.
The functional API provides less control in exchange for the ability to make decisions for the programmer:
-
all executing runtimes are bootstrapped identically
-
scheduling is determined by the API, not the programmer
目录
- parallel\bootstrap — Bootstrapping
- parallel\run — Execution
+添加备注
用户贡献的备注 1 note
gajowy at agzeta dot pl ¶
2 years ago
Consider cost of bootstraping. In the parallel\Runtime API the bootstrap routine is executed each time "new Runtime()" is called. So if you create e.g. 8 Runtimes, the bootstrap code will be executed 8 times and it does not depend on the number of Futures. On the other hand, in the case of Functional API each "parallel\run()" causes the boostrap code to be called again. This can be painfull if your tasks environement is complex (eg. huge datasets that need to be prepared in advance and thausends of relatively small tasks).