6 ms·
Most web sites can grow significantly without having to do data partitioning. Simple replication should be considered as a first option, especially if your read
by jhherren 15y ago
Most web sites can grow significantly without having to do data partitioning. Simple replication should be considered as a first option, especially if your read/write ratio is high. Also, you don't have to implement a lot of extra logic in your application; just write to your master and read from the slaves.
- zwischenzug 15y agoDamn straight. And cache appropriately (and dumbly).