I'm working on a web project using C#, entity framework 4, mssql. while the data grows bigger (not very big, but hard for single server), we decided to change something in the data access layer to enhance the throughput and performance.
Because change the database to a nosql one is costly for refactor, we'd plan use database replication, which i'v never used it before.
- Should we use more than one "connection strings", which used explicitly by the programmers according to "read" or "write" ops?
- Will reading the slaves cause "dirty" read?
- Any other best practices to deal this problem with minimized refactor cost?
we are not restricted to mssql server.
ps:we don't have many tables, but there are some social data that would be big enough and hard to separate table/database.