MayTheSchwartzBeWithYou
MayTheSchwartzBeWithYou

Reputation: 1177

Question about distributed database system

I am currently creating a site(php,css,html,ajax,MySql) which will have heavy user usage of space(regarding data). These data are quite essential and the can NOT be lost, it is really essential.

I am looking for tips on servers, languages and everything else(even theory) about distributed database systems. Any help would be really appreciated. Also it would be great if the system used mysql.

Thank you

P.S. dont link Google.com. I have done that and reached nothing but a wall :(

Upvotes: 2

Views: 2283

Answers (1)

Paul Sasik
Paul Sasik

Reputation: 81459

My guess is that you're Googling for the wrong terms. If you searched for MySql Replication you might run into this article

Database replication is what enables a "distributed database system". You should also look into clustering to see if that type of distributio/replicationn might meet your needs.

Also, you didn't specify if you were running LAMP or WAMP but here's a how-to on setting up a MySQL and Apache cluster.

Upvotes: 1

Related Questions