Redis Master-Slave Replication Fundamentals
Redis master-slave replication enables data from one Redis server (the master) to be copied to one or more other Redis servers (slaves). Data flows unidirectionallly—from master to slave. By default, every Redis instance starts as a master. A master can have multiple slaves, but each slave can only replicate from a single master.
Key Benefits o ...
Posted on Sat, 06 Jun 2026 17:57:51 +0000 by beeman000
Implementing Database Sharding and Read-Write Splitting with Mycat
Database Shardign Implementation
Mycat Installation and Configuration
Download Mycat from the official repository. For Linux environments, extract the package using:
tar -xvf Mycat-server-1.6.7.1-release-*.tar.gz
The extracted directory includes:
bin: executable scripts
conf: configuration files (schema.xml, server.xml, rule.xml)
lib: require ...
Posted on Thu, 04 Jun 2026 19:21:20 +0000 by visualed
Configuring MySQL Master-Slave Replication with MyCAT for Read-Write Splitting on Windows
Implementing a robust read-write splitting architecture can significantly enhance database performance and availability by distributing query loads across multiple servers. This setup ensures that write operations are hendled by a dedicated primary server, while read requests are served by one or more secondary servers. This document outlines t ...
Posted on Thu, 21 May 2026 16:32:40 +0000 by raku