💻
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

Search Engine (Elasticsearch)

NoSQL, document-oriented database.

To handle advanced search requirements, e.g. e-commerce with search functionality.

When using search functionality in an e-commerce platform, we usually can filter by location, type, category, rating, name, description, and other filters. It is not possible to create indexes for all of column with all of the possible combinations on relational DB. We should use elasticsearch instead.

PreviousIn-Memory (Redis)NextColumn-Oriented (Cassandra)

Last updated 1 year ago