💻
Software Engineering Notes
  • Introduction
  • Event-Sourcing
  • CQS and CQRS
  • Domain-Driven Design
    • Overview
    • Business Domain
    • Subdomain
    • Bounded Context
      • Interaction Between Contexts
    • Layers
      • Domain Layer
      • Application Layer
      • Infrastructure Layer
  • Database
    • In-Memory (Redis)
    • Search Engine (Elasticsearch)
    • Column-Oriented (Cassandra)
    • Document-Oriented (MongoDB)
  • Messaging
    • Brokers
      • Kafka
  • Race Condition
  • Concurrency vs Parallelism
  • API Architectural Styles
    • gRPC
  • Language & Framework Specific Notes
    • Go (Golang)
Powered by GitBook
On this page
  1. Database

Document-Oriented (MongoDB)

  • NoSQL, document-oriented database

  • Uses BSON structure (similar to JSON)

  • Very scalable (horizontal scaling is easier to do compared to relational DB)

Might be useful for some cases when your data is unstructured.

PreviousColumn-Oriented (Cassandra)NextMessaging

Last updated 1 year ago