Skip to content

concept: Aggregate DB

David Liu edited this page Oct 10, 2024 · 4 revisions
  • Refered as aggregate in domain-driven design (DDD)
  • Denormalized Data model: based around a single, rich structure of closely-related data.
  • Optimized where the read patterns align closely with the write patterns.
  • Not optimized for to combine different types of data that you had previously written
  • Sacrifice relational database model to gain scalability

Implementation

Clone this wiki locally