Re: [PHP] Optimizing Tips

2004-08-05 Thread Justin Patrin
om: Vinayakam Murugan [mailto:[EMAIL PROTECTED] > Sent: den 5 augusti 2004 14:09 > To: Nicklas Bondesson > Subject: Re: [PHP] Optimizing Tips > > On Thursday 05 Aug 2004 5:29 pm, you wrote: > > Will the majority of the visitors surf from within India? I think I > > will

Re: [PHP] Optimizing Tips

2004-08-05 Thread Brent Baisley
All things being equal as your test environment (i.e. hardware, load), the big difference is latency on the network. You may have designed your application to "echo" code to the client as you create it. This may cause lots of small network packets which will slow things down considerably. You s

RE: [PHP] Optimizing Tips

2004-08-05 Thread Nicklas Bondesson
PROTECTED] Sent: den 5 augusti 2004 14:09 To: Nicklas Bondesson Subject: Re: [PHP] Optimizing Tips On Thursday 05 Aug 2004 5:29 pm, you wrote: > Will the majority of the visitors surf from within India? I think I > will experience the site more slow than anyone from India. I'm surfing

Re: [PHP] Optimizing Tips

2004-08-05 Thread John Nichel
On Thursday 05 August 2004 06:47, Vinayakam Murugan offered up the following tid-bit of information : > Hello > > I am a fresh PHP programmer and am part of a team developing a LAMP based > website. The problem we are facing is that when the site was hosted on a > local server, it was quite fast.

Re: [PHP] Optimizing Tips

2004-08-05 Thread Umesh Deshmukh
Hi, Please check if 1) you have used recordsets, you have closed it at proper places. 2) connection objects are closed or not. These are some of the things in case of PHP. While coding , pls. follow. to open only one connection with the database. Regards, Umesh. - Original Message

Re: [PHP] Optimizing Tips

2004-08-05 Thread Alister Bulman
On Thu, 5 Aug 2004 16:17:34 +0530, Vinayakam Murugan <[EMAIL PROTECTED]> wrote: > I am a fresh PHP programmer and am part of a team developing a LAMP based > website. The problem we are facing is that when the site was hosted on a > local server, it was quite fast. Now that we have to use the inter

RE: [PHP] Optimizing Tips

2004-08-05 Thread Nicklas Bondesson
There are many things you can do to optimize speed on a website. First of all you need to determine how many concurrent users you can handle on the server you are hosting the website on. You have to take the following into consideration: CPU, Memory, Disks, Network etc. You can gain relatively much

RE: [PHP] Optimizing Tips

2004-08-05 Thread Jay Blanchard
[snip] I am a fresh PHP programmer and am part of a team developing a LAMP based website. The problem we are facing is that when the site was hosted on a local server, it was quite fast. Now that we have to use the internet to get to it, it has become very slow even keeping in mind consideration