What is the difference between replication and one-way synchronization in relation to databases? Here is what I found about replication :
Replication (from lat. Replico-repeat) is the replication of data changes from the main database server on one or several dependent servers. The main server will be called the master, and dependent servers - replicas.
and about one-way synchronization :
One-way synchronization. The content of one base (master) is copied to another base (slave). In MySQL, synchronization of databases on different servers is used to replicate tables, create test and backup databases, backup MySQL, etc.
According to these definitions, it seems that these concepts mean the same thing.