|
82 | 82 |
|
83 | 83 | > [HBase](https://dunwu.github.io/bigdata-tutorial/hbase) 📚 因为常用于大数据项目,所以将其文档和源码整理在 [bigdata-tutorial](https://dunwu.github.io/bigdata-tutorial/) 项目中。
|
84 | 84 |
|
85 |
| -- [HBase 应用指南](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-quickstart.md) ⚡ |
86 |
| -- [HBase 命令](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-cli.md) |
87 |
| -- [HBase Java API](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-api.md) |
88 |
| -- [HBase 配置](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/hbase-ops.md) |
| 85 | +- [HBase 原理](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/HBase原理.md) ⚡ |
| 86 | +- [HBase 命令](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/HBase命令.md) |
| 87 | +- [HBase 应用](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/HBase应用.md) |
| 88 | +- [HBase 运维](https://github.com/dunwu/bigdata-tutorial/blob/master/docs/hbase/HBase运维.md) |
89 | 89 |
|
90 | 90 | #### [MongoDB](docs/nosql/mongodb) 📚
|
91 | 91 |
|
| 92 | +> MongoDB 是一个基于文档的分布式数据库,由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案。 |
| 93 | +> |
| 94 | +> MongoDB 是一个介于关系型数据库和非关系型数据库之间的产品。它是非关系数据库当中功能最丰富,最像关系数据库的。它支持的数据结构非常松散,是类似 json 的 bson 格式,因此可以存储比较复杂的数据类型。 |
| 95 | +> |
| 96 | +> MongoDB 最大的特点是它支持的查询语言非常强大,其语法有点类似于面向对象的查询语言,几乎可以实现类似关系数据库单表查询的绝大部分功能,而且还支持对数据建立索引。 |
| 97 | +
|
92 | 98 | - [MongoDB 应用指南](docs/nosql/mongodb/mongodb-quickstart.md)
|
93 | 99 | - [MongoDB 聚合操作](docs/nosql/mongodb/mongodb-aggregation.md)
|
94 | 100 | - [MongoDB 建模](docs/nosql/mongodb/mongodb-model.md)
|
|
105 | 111 |
|
106 | 112 | ## 📚 资料
|
107 | 113 |
|
108 |
| -- **Mysql** |
109 |
| - - **官方** |
110 |
| - - [Mysql 官网](https://www.mysql.com/) |
111 |
| - - [Mysql 官方文档](https://dev.mysql.com/doc/refman/8.0/en/) |
112 |
| - - [Mysql 官方文档之命令行客户端](https://dev.mysql.com/doc/refman/8.0/en/mysql.html) |
113 |
| - - **书籍** |
114 |
| - - [《高性能 MySQL》](https://book.douban.com/subject/23008813/) - 经典,适合 DBA 或作为开发者的参考手册 |
115 |
| - - [《MySQL 必知必会》](https://book.douban.com/subject/3354490/) - 适合入门者 |
116 |
| - - **教程** |
117 |
| - - [runoob.com MySQL 教程](http://www.runoob.com/mysql/mysql-tutorial.html) - 入门级 SQL 教程 |
118 |
| - - [mysql-tutorial](https://github.com/jaywcjlove/mysql-tutorial) |
119 |
| - - **更多资源** |
120 |
| - - [awesome-mysql](https://github.com/jobbole/awesome-mysql-cn) |
121 |
| -- **Redis** |
122 |
| - - **官网** |
123 |
| - - [Redis 官网](https://redis.io/) |
124 |
| - - [Redis github](https://github.com/antirez/redis) |
125 |
| - - [Redis 官方文档中文版](http://redis.cn/) |
126 |
| - - [Redis 命令参考](http://redisdoc.com/) |
127 |
| - - **书籍** |
128 |
| - - [《Redis 实战》](https://item.jd.com/11791607.html) |
129 |
| - - [《Redis 设计与实现》](https://item.jd.com/11486101.html) |
130 |
| - - **源码** |
131 |
| - - [《Redis 实战》配套 Python 源码](https://github.com/josiahcarlson/redis-in-action) |
132 |
| - - **资源汇总** |
133 |
| - - [awesome-redis](https://github.com/JamzyWang/awesome-redis) |
134 |
| - - **Redis Client** |
135 |
| - - [spring-data-redis 官方文档](https://docs.spring.io/spring-data/redis/docs/1.8.13.RELEASE/reference/html/) |
136 |
| - - [redisson 官方文档(中文,略有滞后)](https://github.com/redisson/redisson/wiki/%E7%9B%AE%E5%BD%95) |
137 |
| - - [redisson 官方文档(英文)](https://github.com/redisson/redisson/wiki/Table-of-Content) |
138 |
| - - [CRUG | Redisson PRO vs. Jedis: Which Is Faster? 翻译](https://www.jianshu.com/p/82f0d5abb002) |
139 |
| - - [redis 分布锁 Redisson 性能测试](https://blog.csdn.net/everlasting_188/article/details/51073505) |
| 114 | +### Mysql 资料 |
| 115 | + |
| 116 | +- **官方** |
| 117 | + - [Mysql 官网](https://www.mysql.com/) |
| 118 | + - [Mysql 官方文档](https://dev.mysql.com/doc/refman/8.0/en/) |
| 119 | + - [Mysql 官方文档之命令行客户端](https://dev.mysql.com/doc/refman/8.0/en/mysql.html) |
| 120 | +- **书籍** |
| 121 | + - [《高性能 MySQL》](https://book.douban.com/subject/23008813/) - 经典,适合 DBA 或作为开发者的参考手册 |
| 122 | + - [《MySQL 必知必会》](https://book.douban.com/subject/3354490/) - 适合入门者 |
| 123 | +- **教程** |
| 124 | + - [runoob.com MySQL 教程](http://www.runoob.com/mysql/mysql-tutorial.html) - 入门级 SQL 教程 |
| 125 | + - [mysql-tutorial](https://github.com/jaywcjlove/mysql-tutorial) |
| 126 | +- **更多资源** |
| 127 | + - [awesome-mysql](https://github.com/jobbole/awesome-mysql-cn) |
| 128 | + |
| 129 | +### Redis 资料 |
| 130 | + |
| 131 | +- **官网** |
| 132 | + - [Redis 官网](https://redis.io/) |
| 133 | + - [Redis github](https://github.com/antirez/redis) |
| 134 | + - [Redis 官方文档中文版](http://redis.cn/) |
| 135 | + - [Redis 命令参考](http://redisdoc.com/) |
| 136 | +- **书籍** |
| 137 | + - [《Redis 实战》](https://item.jd.com/11791607.html) |
| 138 | + - [《Redis 设计与实现》](https://item.jd.com/11486101.html) |
| 139 | +- **源码** |
| 140 | + - [《Redis 实战》配套 Python 源码](https://github.com/josiahcarlson/redis-in-action) |
| 141 | +- **资源汇总** |
| 142 | + - [awesome-redis](https://github.com/JamzyWang/awesome-redis) |
| 143 | +- **Redis Client** |
| 144 | + - [spring-data-redis 官方文档](https://docs.spring.io/spring-data/redis/docs/1.8.13.RELEASE/reference/html/) |
| 145 | + - [redisson 官方文档(中文,略有滞后)](https://github.com/redisson/redisson/wiki/%E7%9B%AE%E5%BD%95) |
| 146 | + - [redisson 官方文档(英文)](https://github.com/redisson/redisson/wiki/Table-of-Content) |
| 147 | + - [CRUG | Redisson PRO vs. Jedis: Which Is Faster? 翻译](https://www.jianshu.com/p/82f0d5abb002) |
| 148 | + - [redis 分布锁 Redisson 性能测试](https://blog.csdn.net/everlasting_188/article/details/51073505) |
| 149 | + |
| 150 | +### MongoDB 资料 |
| 151 | + |
| 152 | +- **官方** |
| 153 | + - [MongoDB 官网](https://www.mongodb.com/) |
| 154 | + - [MongoDB Github](https://github.com/mongodb/mongo) |
| 155 | + - [MongoDB 官方免费教程](https://university.mongodb.com/) |
| 156 | +- **教程** |
| 157 | + - [MongoDB 教程](https://www.runoob.com/mongodb/mongodb-tutorial.html) |
| 158 | + - [MongoDB 高手课](https://time.geekbang.org/course/intro/100040001) |
| 159 | +- **数据** |
| 160 | + - [mongodb-json-files](https://github.com/ozlerhakan/mongodb-json-files) |
| 161 | +- **文章** |
| 162 | + - [Introduction to MongoDB](https://www.slideshare.net/mdirolf/introduction-to-mongodb) |
140 | 163 |
|
141 | 164 | ## 🚪 传送
|
142 | 165 |
|
|
0 commit comments