increasing efficiency of site

XML, Perl, Python, and other languages can be discussed here, even if it isn't PHP (We might forgive you).

Moderator: General Moderators

Post Reply
bugthefixer
Forum Contributor
Posts: 118
Joined: Mon Mar 22, 2004 2:35 am

increasing efficiency of site

Post by bugthefixer »

my site site currently even cant accomodate 100 users which r accessing it at the same time...how can i make it efficient sop tat if 1000s of users access it at the same time it shud not create any prob.
i mean i need tips to get rid of such probs.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

that's pretty dependant on what your scripts are doing. If they are doing a lot of repetitive operations, you can look into caching the output. If you're doing a ton of queries, look into reducing the quantity, or optimizing them to execute faster. getting rid of unnecessary or redundant calculations (especially ones repeated many many times, or ones that often take a long time to run.)
User avatar
Calimero
Forum Contributor
Posts: 310
Joined: Thu Jan 22, 2004 6:54 pm
Location: Milky Way

...

Post by Calimero »

Take the load to the client side, is the problem with your machine or maybe the link you are using.
Post Reply