What I have:
- A MySQL database running on Ubuntu that maintains a large table of articles (similar to wordpress).
- Need to relate a given article to another set of data. This set of data will be fairly large.
- There maybe various sets of data that will be related.
The query:
- Is it better to contain these various large sets of data within the same database of articles, which will have a large set of traffic on it?
or
- Is it better to create different databases (on the same server) that relate by a primary key to the main database with the articles?