6 ms·
Two per site - one for main Q&A, one for its meta.
by aalear 10y ago
Two per site - one for main Q&A, one for its meta.
- nickpsecurity 10y agoYou couldn't do one with some different tables? What was justification for both separate DB's and the Q&D/meta split? Just curious.
- Nick-Craver 10y agoIf you did different tables, that's even more complicated by making every query dynamic. It also makes backups, etc. far more complicated as well. Multiple databases is simply the simplest solution for multiple things that need a database with the same schema :)
- nickpsecurity 10y agoAppreciate the tip.