in reply to Re^2: Speed of MySQL DBs
in thread Speed of MySQL DBs
I don't know off hand whether mysql's data files are "one per table" or "one per database" -- and I'm not sure if that even makes a difference for performance.
If you aren't familiar with the science and art of creating indexes on fields that are often used in the "where" clause, maybe it would be more effective to study that before trying "separate databases vs. separate tables in one database". Indexes are pretty easy to add to a running database, and can have a dramatic effect on query response time. (UPDATE: Then again, if you have other good reasons for using separate databases, go ahead -- I doubt it would damage performance at all, and might even help.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Speed of MySQL DBs
by eric256 (Parson) on Feb 06, 2006 at 18:17 UTC | |
by graff (Chancellor) on Feb 07, 2006 at 01:20 UTC |