|
If you have physical access on both servers and they are in the same place, you can make a 'server farm'. That will definitely reduce the load to both of them, as the data will be processed (and served) by two servers at the same time.
But can actually reduce the load even without the above method. You can use as well server b for db quering (and data processing), and have server a just to serve the pages. Which means, just to show the wanted content to the viewer.
mtishetsky, when we talk about php, we mean that we are going to have a dynamic web page, right? (well, at least in most cases). If the content changes dynamically, using static html pages will lead you nowhere. When a record is added to the db the page probably won't be updated..
Last edited by Spiros; 07-12-2006 at 04:02 AM..
|