I want to setup 2 MySQL databases which differ in schema in that, one is normalized and the other is flat for quicker reads. The information being stored in both DBs is the same, but the representation is obviously different owing to the different design approaches.
I need to find a robust solution to sync information in real time from my normalized version to my flatter version.
EDIT: The sync only needs to be from the normalized DB to the flat DB. The flattened DB would not write to any of the tables that have been flattened out from the normalized one.