Hi, one of my colleagues suggested that I should make different databases (MySQL) for each client, so that if one account is compromised, we only need to restore a backup of a single database. I'm concerned about a fast access to the data: which is faster? selecting a database among thousands of them, or finding an entry among thousands on a table from a single database? And also, what's more convenient, in terms of speed and reliability: to backup a large database, or a large number of little ones? Also, Is there a way to backup only one entry in a table, and if there is, is it better than backing up lots of little databases or a large one?
The system I'm using is based on PHP/MySQL and jQuery (Javascript and AJAX), if it helps.