Add Databases Sections

SQL/NoSQL and BoJack Links
This commit is contained in:
Marcelo Boeira
2019-04-17 08:14:30 +02:00
parent f29f8495a8
commit 8910966a52
3 changed files with 21 additions and 3 deletions

View File

@@ -20,6 +20,16 @@ graph TD
DS --> Graph[Graph]
DS --> T3[Tree]
DS --> HS[Hash]
SW --> DB[Databases]
DB --> SQL[SQL]
SQL --> PgSQL[PostgreSQL]
SQL --> MySQL[MySQL]
DB --> NoSQL[NoSQL]
NoSQL --> KV[KeyValue]
KV --> Rd[Redis]
NoSQL --> DoS[DocumentStore]
DoS --> Mng[Mongo]
DoS --> ES[ElasticSearch]
SW --> OPS[Operations]
OPS --> OS[Operating Systems]
OPS --> IaC[Infrastructure as Code]