Add some database theory content and sub-categories

This commit is contained in:
Marcelo Boeira
2019-07-08 10:32:53 +02:00
parent f53c57730c
commit 0ce32df496
3 changed files with 22 additions and 10 deletions

View File

@@ -27,16 +27,21 @@ graph TD
DS --> HS[Hash]
SW --> DB[Databases]
DB --> SQL[SQL]
SQL --> PgSQL
SQL --> MySQL
SQL --> Cassandra
DB --> NoSQL[NoSQL]
NoSQL --> KV[KeyValue]
KV --> Rd[Redis]
NoSQL --> DoS[DocumentStore]
DoS --> Mng[Mongo]
DoS --> ES[ElasticSearch]
DB --> DBT[Theory]
DBT --> CAP[CAP Theorem]
DBT --> DBTS[Scaling]
DBT --> DBTR[Replication]
DBT --> DBTX[Sharding]
DB --> SQL[SQL]
SQL --> PgSQL
SQL --> MySQL
SQL --> Cassandra
DB --> NoSQL[NoSQL]
NoSQL --> KV[KeyValue]
KV --> Rd[Redis]
NoSQL --> DoS[DocumentStore]
DoS --> Mng[Mongo]
DoS --> ES[ElasticSearch]
SW --> DSi[Distributed Systems]
DSi --> EvS[Event Sourcing]