[Go] CGO使用方法和示例 2024-01-19 golang 516 words 2 mins read Golang中的Cgo是Go语言提供的一种机制,用于在Go程序和C/C++程序之间进行互操作,为Go程序员提供了一个直接调用C库以及使用C语 Read more...
网络传输:大小端 2024-01-19 big-endian little-endian 682 words 2 mins read 网络传输:大小端 什么是大端序(Big-Endian)和小端序(Little-Endian) Little-Endian 就是低位字节排放在内存的低地址端,高位字节排放在 Read more...
Minio on Docker Compose 2024-01-19 minio docker 934 words 2 mins read minio集群docker部署 MinIO 是在 GNU Affero 通用公共许可证 v3.0 下发布的高性能对象存储。它与 Amazon S3 云存储服务 API 兼容。使用 MinIO 为机器学习、分析和应用程序数 Read more...
MySQL-router MGR on Docker Compose 2024-01-19 mysql docker 2347 words 5 mins read docker-compose之mysql-router(MGR单主模式) MGR介绍 MGR 即 MySQL Group Replication MGR 的特点 高一致性,基于原生复制及 paxos 协议的组复制技 Read more...
Nginx 生产环境下的安全配置 2024-01-18 nginx 3985 words 8 mins read Nginx 生产环境下的安全配置 典型配置示例 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 # ma Read more...