in reply to Re^2: How to recommend hardware to customers?
in thread How to recommend hardware to customers?

Thanks all. The horizontal scalability sounds interesting. Do you know where can I find more info about makin my application horizontally scalable, or is it more of a configuration of Apache/MySQL type of issue?
  • Comment on Re^3: How to recommend hardware to customers?

Replies are listed 'Best First'.
Re^4: How to recommend hardware to customers?
by tilly (Archbishop) on Oct 24, 2004 at 01:31 UTC
    To make your application "horizontally scalable", don't do anything to keep it from being so. Don't use shared memory. Don't use the local filesystem. Put stuff in the database.

    Voila! You can now run one database and many webservers. As long as the database doesn't fall over, you scale.