gCache: Helping PHP to work faster
Wednesday, June 27th, 2007
Many php sites usually do many SQL query for show a single page. That doesn’t affect the performance when the traffic is under the 10000 hits per day.
But the think became more hard to handle when the traffic is upper than 10000 hits, and more if the web server is a shared server.
Usually we need to find a way to help php to reduce the number of query to a database, because as a friend told me: “Most of time php is awaiting for a database to response” (more…)