In the business I work for we are discussion methods to reduce the read load on our primary database.
One option that has been suggested is to have live one-way replication from our primary database to a slave database. Applications would then read from the slave database and write directly to the primary database. So...
- Application Reads From Slave
- Application Writes to Primary
- Primary Updates Slave Automatically
What are the major pros and cons for this method?