How would I implement separate databases for reading and writing operations?
I’m not a specialist but the read/write master database and read-only slaves pattern is a “common” pattern, especially for big applications doing mostly read accesses or data warehouses: it allows to scale (you add more read-only slaves if required) it allows to tune the databases differently (for either efficient reads or efficient writes) What would … Read more