[MySQL] 用Docker搭建MySQL主从多节点集群 2021-05-23 mysql docker 1565 words 4 mins read 用Docker搭建MySQL主从多节点集群 MySQL 主从同步分为 5 个步骤: master 节点将数据的更新记录写到 binary log 中。 slave 节点开启 IO 线程连接 master 节点,请求获取指定 Read more...
[MySQL] MySQL 存储引擎的比较 2021-05-23 mysql 1468 words 3 mins read 转载自 MySql 存储引擎的比较 InnoDB 存储引擎 InnoDB 是事务性数据库的首选引擎,支持事务安全表(ACID),支持行锁定和外键。MySQL5.5.5 之后,Inno Read more...
[MySQL] MySQL Cluster on docker-compose 2021-05-23 mysql docker 643 words 2 mins read MySQL Cluster on docker-compose MySQL Cluster是一个高性能、可扩展、集群化数据库产品。MySQL Cluster是一个基于NDB Cluster存储引擎的完整分布式数 Read more...
[MySQL] Percona XtraDB Cluster on docker-compose 2021-05-23 mysql docker 857 words 2 mins read Percona XtraDB Cluster on docker-compose 选择percona/percona-xtradb-cluster:5.7版本,搭建一个3节点的集群; 使用haproxy做反向代理负 Read more...
[Go] Golang Unicode 2021-05-18 golang 3244 words 7 mins read unicode包提供数据和函数来测试Unicode代码点的一些属性。 unicode 包 [原文] (https://www.cnblogs.com/golove/p/3273585.html) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 Read more...