Skip to main content

3 posts tagged with "architecture patterns"

View All Tags

· 9 min read
Andrey Ganyushkin

What is monolithic architecture pattern?

Monolithic architecture - monolithic application is a single unified software application which is self-contained and independent from other applications, but typically lacks flexibility.

Monolithic architecture - Design an architecture that structures the application as a single deployable/executable component that uses a single database.

· 5 min read
Andrey Ganyushkin

What is this?

Data-oriented architecture

This is an architecture with single logical storage for data and loosely coupled services. Communications between services should be organized through data layer.

"Data-oriented architecture" - means, think about data and storage first and then about services to process this data. This is true for the applications where data is the main value.