Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 910 Bytes

File metadata and controls

24 lines (16 loc) · 910 Bytes

RDBMS (Relational Database Management System)

  • Relational databases are normally row based
  • Postgres and MySQL are most widely used

Postgres vs MySQL

  • Postgres:
    • object-relational database
    • open source, easy to install, highly extensible
    • implements Multi-version Concurrency Control (MVCC) without read locks
    • protecting data integrity at the transaction level
  • MySQL
    • purely relational database
    • most popular
    • better performance on large scale of data (larger than millions)

Reference