logo

license build

DB-TUTORIAL

> 💾 **db-tutorial** 是一个数据库教程。 > > - 🔁 项目同步维护:[Github](https://github.com/dunwu/db-tutorial/) | [Gitee](https://gitee.com/turnon/db-tutorial/) > - 📖 电子书阅读:[Github Pages](https://dunwu.github.io/db-tutorial/) | [Gitee Pages](https://turnon.gitee.io/db-tutorial/) ## 📖 内容 ### 关系型数据库 > [关系型数据库](docs/sql) 整理主流关系型数据库知识点。 [关系型数据库面试总结](docs/sql/sql-interview.md) 💯 [**SQL Cheat Sheet**](docs/sql/sql-cheat-sheet.md) 是一个 SQL 入门教程。 ![img](http://dunwu.test.upcdn.net/snap/20200115160512.png) #### Mysql > [Mysql](docs/sql/mysql) 📚 是互联网最流行的关系型数据库。 - [Mysql 应用指南](docs/sql/mysql/mysql-quickstart.md) - [Mysql 索引](docs/sql/mysql/mysql-index.md) - [Mysql 锁](docs/sql/mysql/mysql-lock.md) - [Mysql 事务](docs/sql/mysql/mysql-transaction.md) - [Mysql 性能优化](docs/sql/mysql/mysql-optimization.md) - [Mysql 运维](docs/sql/mysql/mysql-ops.md) 🔨 - [Mysql 配置](docs/sql/mysql/mysql-config.md) #### 其他关系型数据库 - [H2 入门指南](docs/sql/h2.md) - [SqLite 入门指南](docs/sql/sqlite.md) - [PostgreSQL 入门指南](docs/sql/postgresql.md) ### Nosql 数据库 > [Nosql 数据库](docs/nosql) 整理主流 Nosql 数据库知识点。 - [Nosql 技术选型](docs/nosql/nosql-selection.md) #### Redis > [Redis](docs/nosql/redis) 📚 ![img](http://dunwu.test.upcdn.net/snap/20200713105627.png) - [Redis 面试总结](docs/nosql/redis/redis-interview.md) 💯 - [Redis 入门指南](docs/nosql/redis/redis-quickstart.md) ⚡ - 关键词:`内存淘汰`、`事件`、`事务`、`管道`、`发布与订阅` - [Redis 数据类型和应用](docs/nosql/redis/redis-datatype.md) - 关键词:`STRING`、`HASH`、`LIST`、`SET`、`ZSET`、`BitMap`、`HyperLogLog`、`Geo` - [Redis 持久化](docs/nosql/redis/redis-persistence.md) - 关键词:`RDB`、`AOF`、`SAVE`、`BGSAVE`、`appendfsync` - [Redis 复制](docs/nosql/redis/redis-replication.md) - 关键词:`SLAVEOF`、`SYNC`、`PSYNC`、`REPLCONF ACK` - [Redis 哨兵](docs/nosql/redis/redis-sentinel.md) - 关键词:`Sentinel`、`PING`、`INFO`、`Raft` - [Redis 集群](docs/nosql/redis/redis-cluster.md) - 关键词:`CLUSTER MEET`、`Hash slot`、`MOVED`、`ASK`、`SLAVEOF no one`、`redis-trib` - [Redis 实战](docs/nosql/redis/redis-action.md) - 关键词:`缓存`、`分布式锁`、`布隆过滤器` - [Redis 运维](docs/nosql/redis/redis-ops.md) 🔨 - 关键词:`安装`、`命令`、`集群`、`客户端` #### Elasticsearch > [Elasticsearch](docs/nosql/elasticsearch) 📚 - [Elasticsearch 面试总结](docs/nosql/elasticsearch/elasticsearch-interview.md) 💯 - [ElasticSearch 应用指南](docs/nosql/elasticsearch/elasticsearch-quickstart.md) - [ElasticSearch API](docs/nosql/elasticsearch/elasticsearch-api.md) - [ElasticSearch 运维](docs/nosql/elasticsearch/elasticsearch-ops.md) #### HBase > [HBase](https://dunwu.github.io/bigdata-tutorial/hbase) 📚 因为常用于大数据项目,所以将其文档和源码整理在 [bigdata-tutorial](https://dunwu.github.io/bigdata-tutorial/) 项目中。 - [HBase 应用指南](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-quickstart.md) ⚡ - [HBase 命令](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-cli.md) - [HBase Java API](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-api.md) - [HBase 配置](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-ops.md) ### 中间件 - [版本管理中间件 flyway](docs/middleware/flyway.md) - [分库分表中间件 ShardingSphere](docs/middleware/shardingsphere.md) ## 📚 资料 - **Mysql** - **官方** - [Mysql 官网](https://www.mysql.com/) - [Mysql 官方文档](https://dev.mysql.com/doc/refman/8.0/en/) - [Mysql 官方文档之命令行客户端](https://dev.mysql.com/doc/refman/8.0/en/mysql.html) - **书籍** - [《高性能 MySQL》](https://book.douban.com/subject/23008813/) - 经典,适合 DBA 或作为开发者的参考手册 - [《MySQL 必知必会》](https://book.douban.com/subject/3354490/) - 适合入门者 - **教程** - [runoob.com MySQL 教程](http://www.runoob.com/mysql/mysql-tutorial.html) - 入门级 SQL 教程 - [mysql-tutorial](https://github.com/jaywcjlove/mysql-tutorial) - **更多资源** - [awesome-mysql](https://github.com/jobbole/awesome-mysql-cn) - **Redis** - **官网** - [Redis 官网](https://redis.io/) - [Redis github](https://github.com/antirez/redis) - [Redis 官方文档中文版](http://redis.cn/) - [Redis 命令参考](http://redisdoc.com/) - **书籍** - [《Redis 实战》](https://item.jd.com/11791607.html) - [《Redis 设计与实现》](https://item.jd.com/11486101.html) - 源码 - [《Redis 实战》配套 Python 源码](https://github.com/josiahcarlson/redis-in-action) - **资源汇总** - [awesome-redis](https://github.com/JamzyWang/awesome-redis) - **Redis Client** - [spring-data-redis 官方文档](https://docs.spring.io/spring-data/redis/docs/1.8.13.RELEASE/reference/html/) - [redisson 官方文档(中文,略有滞后)](https://github.com/redisson/redisson/wiki/%E7%9B%AE%E5%BD%95) - [redisson 官方文档(英文)](https://github.com/redisson/redisson/wiki/Table-of-Content) - [CRUG | Redisson PRO vs. Jedis: Which Is Faster? 翻译](https://www.jianshu.com/p/82f0d5abb002) - [redis 分布锁 Redisson 性能测试](https://blog.csdn.net/everlasting_188/article/details/51073505) ## 🚪 传送 ◾ 🏠 [DB-TUTORIAL 首页](https://github.com/dunwu/db-tutorial) ◾ 🎯 [我的博客](https://github.com/dunwu/blog) ◾