Hi!,
We are developing a campus ERP solution that runs on the LAMP platform using Intel processors. I would like to know how you can help us in speeding up this application by helping us to make use of the Intel multi-core architecture. Our application typically runs on a quad core processor machine. A couple of ways I can think of and for which I would request more information from you are
1) How can we write multi-threaded code in PHP , maybe by using any third part tools or any special Intel tools that let you do this.
2) Help us in configuring the Linux installation to make use of the multi-core processor and then use Intel tools to monitor the benefits.
Hmmm, I think that Apache will just start every request processing in different process/thread, so you will benefit from multi-core transparently.
You really must NOT try to parallelize at intra-request level! You must parallelize at highest possible level, and for server software it's request level.