Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e10bfa7

Browse files
author
bajins
committed
refactor(DBS): 重构数据库大全分类
- 新增多个数据库分类,包括 NewSQL、NoSQL、时间序列数据库等 - 更新部分数据库链接和描述 - 调整数据库项目的组织结构,使其更加清晰 - 移除了一些不再维护或重复的数据库项目
1 parent 548ac93 commit e10bfa7

23 files changed

+331
-163
lines changed

‎.vuepress/public/files/settings.xml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ under the License.
163163
-->
164164
<!-- https://maven.aliyun.com/ -->
165165
<mirror>
166-
<id>alimaven</id>
167-
<name>aliyun maven</name>
168-
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
166+
<id>aliyunmaven</id>
167+
<name>阿里云公共仓库</name>
168+
<url>https://maven.aliyun.com/repository/public</url>
169169
<!-- 如果想为所有的仓库做镜像那么这里加* -->
170170
<!--<mirrorOf>*</mirrorOf>-->
171171
<mirrorOf>central</mirrorOf>

‎DBS/README.md‎

Lines changed: 228 additions & 135 deletions
Large diffs are not rendered by default.

‎DBS/关系型数据库.md‎

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## Flag
77

8-
> 关系型数据库(Relational database),是指采用了关系模型来组织数据的数据库,其以行和列的形式存储数据,以便于用户理解
8+
> 关系型数据库(Relational database)RDBMS,是指采用了关系模型来组织数据的数据库,其以行和列的形式存储数据,以便于用户理解
99
> ,关系型数据库这一系列的行和列被称为表,一组表组成了数据库
1010
1111

@@ -14,21 +14,43 @@
1414
* [https://github.com/mariadb-corporation](https://github.com/mariadb-corporation)
1515
* [https://github.com/percona/percona-server](https://github.com/percona/percona-server)
1616
* SQL代理 [https://github.com/sysown/proxysql](https://github.com/sysown/proxysql)
17-
* 内存关系数据库 [https://github.com/VoltDB/voltdb](https://github.com/VoltDB/voltdb)
17+
18+
19+
20+
**分布式/集群数据库**
21+
22+
* [https://github.com/VoltDB/voltdb](https://github.com/VoltDB/voltdb)
23+
* [https://github.com/DBOS-project/voltdb](https://github.com/DBOS-project/voltdb)
1824
* [https://github.com/memsql](https://github.com/memsql)
19-
* [https://www.singlestore.com](https://www.singlestore.com)
25+
* [https://www.singlestore.com](https://www.singlestore.com)
2026
* [https://github.com/cmu-db/noisepage](https://github.com/cmu-db/noisepage)
21-
* [https://github.com/eclipse-store/store](https://github.com/eclipse-store/store)
27+
* [https://github.com/greenplum-db](https://github.com/greenplum-db)
28+
* [https://github.com/babelfish-for-postgresql](https://github.com/babelfish-for-postgresql)
29+
30+
31+
32+
**嵌入式/本地数据库**
33+
34+
* [https://github.com/eclipse-store/store](https://github.com/eclipse-store/store) Java
2235
* [https://github.com/h2database/h2database](https://github.com/h2database/h2database)
2336
* [https://sourceforge.net/projects/hsqldb](https://sourceforge.net/projects/hsqldb)
24-
* [http://hsqldb.org](http://hsqldb.org)
37+
* [http://hsqldb.org](http://hsqldb.org)
38+
* [https://github.com/apache/derby](https://github.com/apache/derby)
39+
* [https://github.com/artbits/quickio](https://github.com/artbits/quickio) Java
40+
* [https://github.com/jankotek/MapDB](https://github.com/jankotek/MapDB) Java
2541
* [https://github.com/FirebirdSQL/firebird](https://github.com/FirebirdSQL/firebird)
42+
43+
44+
45+
**分析型/OLAP数据库**
46+
2647
* [https://github.com/duckdb/duckdb](https://github.com/duckdb/duckdb)
27-
* [https://github.com/babelfish-for-postgresql](https://github.com/babelfish-for-postgresql)
28-
* [https://github.com/greenplum-db](https://github.com/greenplum-db)
29-
* [https://github.com/clockworklabs/SpacetimeDB](https://github.com/clockworklabs/SpacetimeDB)
3048

3149

50+
**其他/新兴数据库**
51+
52+
* [https://github.com/clockworklabs/SpacetimeDB](https://github.com/clockworklabs/SpacetimeDB)
53+
3254

3355

3456

‎IDE/Git使用.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
* 根据日志生成Changelog [https://github.com/orhun/git-cliff](https://github.com/orhun/git-cliff)
8080
* [https://github.com/conventional-changelog](https://github.com/conventional-changelog)
8181
* 提交统计 [https://github.com/sinclairtarget/git-who](https://github.com/sinclairtarget/git-who)
82+
* [https://github.com/yinzhenyu-su/weekly-git-summary](https://github.com/yinzhenyu-su/weekly-git-summary)
8283
* 删除大型blob [https://github.com/rtyley/bfg-repo-cleaner](https://github.com/rtyley/bfg-repo-cleaner)
8384

8485

‎IDE/IDEA使用.md‎

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,18 @@ demo # 顶级项目(根项目)
236236
- `Do not wrap one line comments` 同一行注释不要换行
237237
- `Preserve line feeds` 保留换行
238238

239-
+ `File` -> `Settings` -> `Editor` -> `General` -> 右边`Soft wrap` (只会在 IDEA 的显示效果上有换行的效果,实际上并没有换行符)
239+
+ `File` -> `Settings` -> `Editor` -> `General` -> 右边`Soft wrap` (只会在 IDEA 的显示效果上有换行的效果,实际上并没有换行符)
240+
241+
242+
243+
**设置注释不在首列(即不顶格)**
244+
245+
+ `File` -> `Settings` -> `Editor` -> `Code Style` -> `选择语言`
246+
+ `Code Generation` -> `Comment Code`|`Comment`|`Comments` -> `Line comment at first column` 取消勾选(行注释在第一列)
247+
+ `Code Generation` -> `Comment Code`|`Comment`|`Comments` -> `Block comment at first column` 取消勾选(块注释在第一列)
248+
+ `Wrapping and Braces` -> `Keep when reformatting` -> `Comment at first column` 取消勾选(注释在第一列)
249+
250+
> 英文语言搜索`Comment`,中文语言搜索`注释`
240251
241252

242253
**缩进参考线**

‎IDE/README.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* 网络分析 [https://github.com/gephi](https://github.com/gephi)
2828
* Android代码编辑器 [https://github.com/massivemadness/Squircle-CE](https://github.com/massivemadness/Squircle-CE)
2929
* 十六进制编辑器 [https://github.com/WerWolv/ImHex](https://github.com/WerWolv/ImHex)
30+
* 同步协作编辑 [https://github.com/ethersync/ethersync](https://github.com/ethersync/ethersync)
3031

3132

3233

‎Java/Java构建管理.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
- [https://github.com/technomancy/leiningen](https://github.com/technomancy/leiningen)
9696
- [https://github.com/ansible/ansible](https://github.com/ansible/ansible)
9797
- [https://github.com/ansible-community](https://github.com/ansible-community)
98+
- [https://github.com/sky22333/ansible-ui](https://github.com/sky22333/ansible-ui)
9899
- 自动化部署 [https://github.com/dreamans/syncd](https://github.com/dreamans/syncd)
99100
- [https://github.com/jitpack/jitpack.io](https://github.com/jitpack/jitpack.io)
100101
- [https://github.com/jreleaser](https://github.com/jreleaser)

‎Java/Java第三方库.md‎

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
- 物联网 [https://github.com/jetlinks](https://github.com/jetlinks)
8383
- 元数据和治理 [https://github.com/odpi/egeria](https://github.com/odpi/egeria)
8484
- [https://github.com/JNOSQL](https://github.com/JNOSQL)
85+
- 解析命令行参数 [http://github.com/cbeust/jcommander](http://github.com/cbeust/jcommander)
8586

8687

8788

@@ -227,7 +228,9 @@
227228
+ URL解析 [https://github.com/smola/galimatias](https://github.com/smola/galimatias)
228229
+ 解析Java源文件 [https://github.com/forge/roaster](https://github.com/forge/roaster)
229230
+ INI配置 [https://github.com/sshtools/jini](https://github.com/sshtools/jini)
230-
231+
+ [https://github.com/matteobaccan/owner](https://github.com/matteobaccan/owner)
232+
+ [https://github.com/cyfonly/owner-doc](https://github.com/cyfonly/owner-doc)
233+
+ 类型转换 [https://github.com/kordamp/ezmorph](https://github.com/kordamp/ezmorph)
231234

232235

233236

@@ -357,6 +360,7 @@
357360
* [https://github.com/EsotericSoftware/reflectasm](https://github.com/EsotericSoftware/reflectasm)
358361
* [https://github.com/leangen/geantyref](https://github.com/leangen/geantyref)
359362
* [https://github.com/easymock/objenesis](https://github.com/easymock/objenesis)
363+
* 获取方法参数名 [https://github.com/paul-hammant/paranamer](https://github.com/paul-hammant/paranamer)
360364
* 可缓存反射 [https://github.com/OxideWaveLength/Java-BetterReflection](https://github.com/OxideWaveLength/Java-BetterReflection)
361365
* 属性比对器 [https://github.com/dadiyang/equator](https://github.com/dadiyang/equator)
362366
* 对象比较属性和审核 [https://github.com/javers/javers](https://github.com/javers/javers)
@@ -414,6 +418,7 @@
414418
* [https://gitee.com/l-weiwei/Spiderman2](https://gitee.com/l-weiwei/Spiderman2)
415419
* [https://gitee.com/flashsword20/webmagic](https://gitee.com/flashsword20/webmagic)
416420
* [https://github.com/zhegexiaohuozi/SeimiCrawler](https://github.com/zhegexiaohuozi/SeimiCrawler)
421+
* [https://github.com/3breadt/dd-plist](https://github.com/3breadt/dd-plist)
417422
* html [https://github.com/HtmlUnit/htmlunit](https://github.com/HtmlUnit/htmlunit)
418423
* [https://sourceforge.net/projects/htmlunit](https://sourceforge.net/projects/htmlunit)
419424

@@ -460,12 +465,14 @@
460465
- Apache BeanUtils [https://github.com/apache/commons-beanutils](https://github.com/apache/commons-beanutils)
461466
- 深拷贝 [https://github.com/orika-mapper/orika](https://github.com/orika-mapper/orika)
462467
- [https://github.com/DozerMapper/dozer](https://github.com/DozerMapper/dozer)
463-
- [https://github.com/lets-mica/mica](https://github.com/lets-mica/mica)
464468
- [https://github.com/yangtu222/BeanUtils](https://github.com/yangtu222/BeanUtils)
465-
- [cglib的BeanCopier](https://github.com/cglib/cglib/blob/master/cglib/src/main/java/net/sf/cglib/beans/BeanCopier.java)
466-
- [https://github.com/kordamp/ezmorph](https://github.com/kordamp/ezmorph)
467-
- [https://github.com/HotelsDotCom/bull](https://github.com/HotelsDotCom/bull)
469+
- [https://github.com/kostaskougios/cloning](https://github.com/kostaskougios/cloning)
470+
- [https://github.com/chadlwilson/cloning](https://github.com/chadlwilson/cloning)
471+
- [https://github.com/aem-design/cloning](https://github.com/aem-design/cloning)
472+
- [https://github.com/sugar-cubes/sugar-cubes-cloner](https://github.com/sugar-cubes/sugar-cubes-cloner)
468473
- [https://github.com/modelmapper/modelmapper](https://github.com/modelmapper/modelmapper)
474+
- [https://github.com/HotelsDotCom/bull](https://github.com/HotelsDotCom/bull)
475+
- [cglib的BeanCopier](https://github.com/cglib/cglib/blob/master/cglib/src/main/java/net/sf/cglib/beans/BeanCopier.java)
469476
- [https://github.com/remondis-it/remap](https://github.com/remondis-it/remap)
470477
- [https://github.com/roookeee/datus](https://github.com/roookeee/datus)
471478
- [https://github.com/xebia-france/selma](https://github.com/xebia-france/selma)
@@ -586,6 +593,7 @@
586593
* [https://github.com/awaitility/awaitility](https://github.com/awaitility/awaitility)
587594
* [https://github.com/TNG/ArchUnit](https://github.com/TNG/ArchUnit)
588595
* [https://github.com/jumper2014/fast-test](https://github.com/jumper2014/fast-test)
596+
* 比较两个SQL结果 [https://github.com/Accenture/DBTestCompare](https://github.com/Accenture/DBTestCompare)
589597
* 生成测试数据 [https://github.com/jsonzou/jmockdata](https://github.com/jsonzou/jmockdata)
590598
* [https://github.com/szpak/mockito-java8](https://github.com/szpak/mockito-java8)
591599
* [https://github.com/DiUS/java-faker](https://github.com/DiUS/java-faker)
@@ -605,6 +613,9 @@
605613
* [https://github.com/kevin-wang001/mockj](https://github.com/kevin-wang001/mockj)
606614
* [https://github.com/mtedone/podam](https://github.com/mtedone/podam)
607615
* [https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers](https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers)
616+
* [https://sourceforge.net/projects/unitils](https://sourceforge.net/projects/unitils)
617+
* [https://sourceforge.net/projects/dbmaintain](https://sourceforge.net/projects/dbmaintain)
618+
608619

609620
- [https://github.com/mryingjie/common-insert](https://github.com/mryingjie/common-insert)
610621

‎Java/README.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@
8383
* [https://github.com/Knn120/OnJava8-PDF](https://github.com/Knn120/OnJava8-PDF)
8484
* Java Tutorials [https://github.com/pingfangx/java-tutorials-in-chinese](https://github.com/pingfangx/java-tutorials-in-chinese)
8585
* [https://github.com/jast90/The-Java-Tutorials-CN](https://github.com/jast90/The-Java-Tutorials-CN)
86+
* [https://github.com/WebJournal/journaldev](https://github.com/WebJournal/journaldev)
87+
* [https://github.com/eugenp/tutorials](https://github.com/eugenp/tutorials)
8688
* [https://jenkov.com](https://jenkov.com)
8789
* Java Servlet 3.1 规范 [https://github.com/waylau/servlet-3.1-specification](https://github.com/waylau/servlet-3.1-specification)
8890
* [https://github.com/flance/java-servlet-specification-4.0](https://github.com/flance/java-servlet-specification-4.0)

‎Java/Spring.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ try {
184184
* [https://github.com/TianShengBingFeiNiuRen/springboot-util](https://github.com/TianShengBingFeiNiuRen/springboot-util)
185185
* [https://github.com/WinterChenS/springboot-learning-experience](https://github.com/WinterChenS/springboot-learning-experience)
186186
* [https://github.com/jesusfc/springboot3-java17](https://github.com/jesusfc/springboot3-java17)
187+
* 工具包 [https://github.com/lets-mica/mica](https://github.com/lets-mica/mica)
187188
* 测试 [https://github.com/codecentric/chaos-monkey-spring-boot](https://github.com/codecentric/chaos-monkey-spring-boot)
188189

189190

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /