Files
Full-Stack-Notes/SREADME.md
2020-05-04 22:07:24 +08:00

184 lines
5.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Full-Stack-Notes
<div align="center"> <img width="380px" src="pictures/full-stack-notes-logo.png"/> </div>
<br/>
<div align="center">
<img src="pictures/芽.png"/>
<strong>一个处于萌芽阶段的知识库,用于持续分享自己的所见、所学、所思!</strong>
</div>
<br/>
<div align="right">
<a href="">点击切换详细目录</a>
</div>
## :coffee: JAVA
1. [Java 反射与注解](notes/Java_反射与注解.md)
2. [Java 并发编程](notes/Java_并发编程.md)
3. [Java 设计模式](notes/Java_设计模式.md)
4. [Java 虚拟机](notes/Java_虚拟机.md)
5. [JVM 性能监控之命令行工具](notes/JVM_性能监控之命令行工具.md)
6. [JVM 性能监控之可视化工具](notes/JVM_性能监控之可视化工具.md)
7. [Java NIO 核心组件详解](notes/Java_NIO.md)
8. 函数式编程
9. [Tomcat 架构解析](notes/Tomcat_架构解析.md)
10. Java 集合类源码解析
<br/>
## :globe_with_meridians: 计算机与网络基础
1. [计算机网络模型](notes/计算机网络.md)
2. HTTP 协议详解
3. HTTPS 协议详解
4. 抓包神器 Wireshark
5. 计算机组成原理
<br/>
## :computer: 前端基础
1. [JavaScript 基础](notes/JavaScript_基础.md)
2. [ECMAScript 6.0 基础](notes/ES6_基础.md)
3. CSS 基础
4. JavaScript 设计模式
<br/>
## :dolphin: 数据库
### MySQL
1. [MySQL 核心概念](notes/MySQL_基础.md)
2. [MySQL 备份详解](notes/MySQL_备份.md)
3. [MySQL 复制详解](notes/MySQL_复制.md)
4. [MySQL 高可用架构之 PXC 集群](notes/MySQL_PXC集群.md)
5. [MyCat 读写分离与分库分表](notes/MySQL_Mycat中间件.md)
6. [MySQL 查询性能分析之 Explain](notes/MySQL_EXPLAIN.md)
### Redis
1. [Redis 基本数据类型和常用命令](notes/Redis_数据类型和常用命令.md)
2. [Redis AOF 和 RDB 持久化策略原理](notes/Redis_持久化.md)
3. [Redis 哨兵模式](notes/Redis_哨兵模式.md)
4. [Redis 集群模式](notes/Redis_集群模式.md)
5. 使用 Redis 实现分布式锁
### MongoDB
1. [MongoDB 基础](notes/MongoDB_基础.md)
2. [MongoDB 索引](notes/MongoDB_索引.md)
3. [MongoDB 聚合](notes/MongoDB_聚合.md)
4. [MongoDB 复制](notes/MongoDB_复制.md)
5. [MongoDB 分片](notes/MongoDB_分片.md)
<br/>
## :whale: 系统与容器
1. [Linux 常用 Shell 命令](notes/Linux_常用Shell命令.md)
2. [Sehll 脚本编程基础](notes/Shell_基础.md)
3. [Docker 基础](notes/Docker_基础.md)
<br/>
## :package: 常用技术栈
### RabbitMQ
1. [RabbitMQ 核心概念](notes/RabbitMQ_基础.md)
2. [RabbitMQ 客户端开发](notes/RabbitMQ_客户端开发.md)
3. [HAProxy + KeepAlived 搭建 RabbitMQ 高可用集群](notes/RabbitMQ_高可用集群架构.md)
### Nginx
1. [Nginx 基础之静态网站部署,负载均衡,动静分离](notes/Nginx_基础.md)
2. HTTP 模块详解
3. Nginx 性能优化
### Kafka
1. [Kafka 简介](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Kafka简介.md)
2. [基于 Zookeeper 搭建 Kafka 高可用集群](https://github.com/heibaiying/BigData-Notes/blob/master/notes/installation/基于Zookeeper搭建Kafka高可用集群.md)
3. [Kafka 生产者详解](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Kafka生产者详解.md)
4. [Kafka 消费者详解](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Kafka消费者详解.md)
5. [深入理解 Kafka 副本机制](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Kafka深入理解分区副本机制.md)
### ZooKeeper
1. [ZooKeeper 简介及核心概念](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Zookeeper简介及核心概念.md)
2. [ZooKeeper 单机环境和集群环境搭建](https://github.com/heibaiying/BigData-Notes/blob/master/notes/installation/Zookeeper单机环境和集群环境搭建.md)
3. [ZooKeeper 常用 Shell 命令](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Zookeeper常用Shell命令.md)
4. [ZooKeeper Java 客户端](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Zookeeper_Java客户端Curator.md)
5. [ZooKeeper ACL 权限控制](https://github.com/heibaiying/BigData-Notes/blob/master/notes/Zookeeper_ACL权限控制.md)
6. 使用 ZooKeeper 实现分布式锁
## ElasticSearch
TODO
<br/>
## :rocket: 测试与运维
1. 性能测试之 Jmeter
2. 性能测试之 LoadRunner
3. Jenkins 持续交付与自动化部署
<br/>
## :bullettrain_side: 微服务与分布式
1. 分布式锁的实现
2. 分布式选举算法
3. 分布式事务实现原理
4. 分布式全局 ID 的生成
5. CAP 理论和 BASE 理论
<br/>
## :hammer_and_wrench: 常用软件安装
1. [Redis 单机环境安装](notes/installation/Redis单机环境搭建.md)
2. [RabbitMQ 单机环境安装](notes/installation/RabbitMQ单机环境搭建.md)
3. [Nginx 单机环境安装](notes/installation/Nginx编译方式安装.md)
4. [MySQL 单机环境安装](notes/installation/MySQL单机环境搭建.md)
5. [MongoDB 单机环境安装](notes/installation/MongoDB单机环境搭建.md)
6. [ElasticSearch + Kibana 单机环境安装](notes/installation/ElasticSearch+Kibana单机环境搭建.md)
<br>
<div align="center"> <img width="200px" src="pictures/blog-logo.png"/> </div>
<div align="center"> <a href = "https://blog.csdn.net/m0_37809146"> 欢迎关注我的博客https://blog.csdn.net/m0_37809146</a> </div>