Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 2.74 KB

database-design.md

File metadata and controls

39 lines (33 loc) · 2.74 KB

Bookmarks tagged [database-design]

https://tomharrisonjr.com/uuid-or-guid-as-primary-keys-be-careful-7b2aa3dcb439


https://dev.to/apium_hub/orm-avoid-using-many-to-many-relationships-52in

The usage of ORMs (data mappers) comes with a great power but also with a great responsibility. ORMs... Tagged with architecture, objectrelationalmapp, orm.


https://en.wikipedia.org/wiki/Two-phase_commit_protocol

In transaction processing, databases, and computer networking, the two-phase commit protocol (2PC) is a type of atomic commitment protocol (ACP). It is a distributed algorithm that coordinates all the...


https://www.youtube.com/watch?v=IUxT7ZRHlZ4

To embed or to reference? Well, it depends on relationship type, data volatility, bounding type etc.... Great video


https://www.youtube.com/watch?v=csKBT8zkRf0

MongoDB's basic unit of storage is a document. Documents can represent rich, schema-free data structures, meaning that we have several viable alternatives to the normalized, relational model. In this ...