微服务之设计、拆分原则
软件架构发展经历软件架构的发展经历了从单体架构、垂直架构、SOA架构到微服务架构以及到现在最新的service mesh(网格服务架构)的过程。 AKF拆分原则AKF 立方体也叫做scala cube,它在《The Art of Scalability》一书中被首次提出,旨在提供一个系统化的扩展思路 ...
Read more
Linux命令之du
查看文件夹大小 du -h –max-depth=1 ./
Read more
算法-二分法查找
Read more
二叉树,B-TREE,B+TREE
算法基础二分法二叉树简介平衡二叉树是基于二分法的策略提高数据的查找速度的二叉树的数据结构; 特点平衡二叉树是采用二分法思维把数据按规则组装成一个树形结构的数据,用这个树形结构的数据减少无关数据的检索,大大的提升了数据检索的速度;平衡二叉树的数据结构组装过程有以下规则: 非叶子节点只能允许最多两个子节 ...
Read more
面试问题整理
bree+ 树链表
Read more
MySQL入门
简介安装与配置安装 执行安装命令 yum install mysql-server -y 启动 使用 systemctl 启动 systemctl start mysqld.service 使用 service 启动 service mysqld start 使用 mysqld 脚本启 ...
Read more
Linux命令之ln
目录链接 使用 root 用户 的 logs 目录指向 /data/logs ln -sf /data/logs/ /root/logs
Read more
MQ 之 kafka
常用命令 查看topic ./kafka-topics.sh –zookeeper xx.xx.xx.xx,xx.xx.xx.xx,xx.xx.xx.xx:2181 –list 订阅数据 ./kafka-console-consumer.sh –bootstrap-server xx.xx.xx ...
Read more
nextcloud之入门
简介同类型产品 seafile 启动 docker run -d –restart=always –name nextcloud -v /data/nextcloud:/var/www/html/data -p 9000:80 nextcloud 进入容器终端 docker exec -it ...
Read more
SELinux之权限控制
配置 文件位置: /etc/selinux/config
Read more