Hello,
I'm constructing a CMS that needs to be optimized to use minimal system resources and deal with heavy traffic. I use caching whenever possible, but I'm not sure what would be least taxing on system resources as far as loading some module configuration settings when I have to.
The two options that stick out in my mind are storing the settings as something like XML in .txt files or using a MySQL database to hold the information. Most of the data being stored will be strings < 10 chars and boolean values.
If MySQL is the better choice for this, I'd also like to know the best format (MyISAM, Merge, InnoDB, BDB, Memory/heap, Cluster, Federated, Archive, CSV, Blackhole) to use for these tables [storing frequently accessed small strings and bool values].
Thanks for your time,
~Morgan McDermott.
morganmcdermott [@t] gmail [d0t] com