English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

We are using Debian with PHP. The site is similar to... http://www.qwikfliks.com/xgenesis.asp?nwct=yes, in which there are THOUSANDS of items that customers can browse through. The machine is an:
2800+ AMD Athlon64
1GB PC3200 Dual Channel RAM
80GB HD

2007-04-11 02:41:05 · 4 answers · asked by Honamos 2 in Computers & Internet Programming & Design

4 answers

mySQL is as fast as it gets. But it could be your table design.

Break the tables down to the minimum, then JOIN using indexes. So why carry a full address, when you can look that up from that single record. That's what relational databases and SQL are all about.

But from my point of view, your website is quite fast. GOOD WORK dude.

Good luck and Happy Computing!

2007-04-11 02:47:52 · answer #1 · answered by Anonymous · 0 0

Make sure that you have the tables indexed on the keys that you are using to access the data for selects and joins. It will help speed things up a bit. Also check your systems load to make sure that there isn't something else running that is sucking up the resources.

2007-04-11 10:09:28 · answer #2 · answered by sheepbalz 3 · 0 0

This link has all the information you need. I would place emphasis on indexes and how your code accesses the database. See notes on the explain command.

2007-04-11 10:11:49 · answer #3 · answered by AnalProgrammer 7 · 0 0

More Ram and faster HD is the biggest Hardware change you can do. 200k is not that bad, your queries and schema may be bad and need to be rewritten.

2007-04-11 09:48:56 · answer #4 · answered by nutwpinut 5 · 0 0

fedest.com, questions and answers