I have a number of collections of data that I would like to display on a website. All of the collections are mutually exclusive; their contents completely unrelated.
My question is this: should I store all of the collections in a single database (using different tables)? Or should I use one database for each collection?
There isn't a ton of data in each collection (i.e. the databases will be fairly small), so the former option seems more attractive. Also, the database connection process in MySQL (via PHP) seems expensive, also supporting the former option. But, because the data is mutually exclusive, it doesn't make much sense to have it all lumped together in one place.
Does anyone have any suggestion as to how I can best handle this?
My question is this: should I store all of the collections in a single database (using different tables)? Or should I use one database for each collection?
There isn't a ton of data in each collection (i.e. the databases will be fairly small), so the former option seems more attractive. Also, the database connection process in MySQL (via PHP) seems expensive, also supporting the former option. But, because the data is mutually exclusive, it doesn't make much sense to have it all lumped together in one place.
Does anyone have any suggestion as to how I can best handle this?
