|
|
|
|
|
by dsr_
1358 days ago
|
|
Sharding is when you store your tables, or parts of tables, on other machines, so that queries are executed by the resources of those remote machines. Read-only replication stores a copy of the whole database on other machines, so that any query which doesn't write can be handled by asking the remote machine. Writes are bottlenecked through the primary machine, which then sends changes to the remotes. |
|