I'm wondering if, under the circumstances that
- You get lots more reads than writes
- Your SQL server of choice is cheap/free and offers a fast mirroring/replication service
- Your database isn't insanely large
rather than having separate SQL servers it would be better to have an instance of SQL on each machine getting instant updates from the master. This way there would be no network latency when doing all the read queries, but there would be a per box performance hit as the SQL instance has to execute. Would this be better overall for performance? Are there any other pros/cons that might come up?