Which database has the best support for replication

前端 未结 10 1471
隐瞒了意图╮
隐瞒了意图╮ 2021-02-08 01:26

I have a fairly good feel for what MySQL replication can do. I\'m wondering what other databases support replication, and how they compare to MySQL and others?

Some que

10条回答
  •  广开言路
    2021-02-08 01:51

    There are a lot of different things which databases CALL replication. Not all of them actually involve replication, and those which do work in vastly different ways. Some databases support several different types.

    MySQL supports asynchronous replication, which is very good for some things. However, there are weaknesses. Statement-based replication is not the same as what most (any?) other databases do, and doesn't always result in the expected behaviour. Row-based replication is only supported by a non production-ready version (but is more consistent with how other databases do it).

    Each database has its own take on replication, some involve other tools plugging in.

提交回复
热议问题