Reader small image

You're reading from  Software Architecture for Busy Developers

Product typeBook
Published inOct 2021
PublisherPackt
ISBN-139781801071598
Edition1st Edition
Right arrow
Author (1)
Stéphane Eyskens
Stéphane Eyskens
author image
Stéphane Eyskens

Stéphane Eyskens has a developer background and became a solution architect about a decade ago. As a cloud subject matter expert, he contributed to many digital transformation programs, helping organizations get better results out of their cloud investments. As an MVP, he is an active contributor to the Microsoft Tech Community and has worked on multiple open source projects available on GitHub. Stéphane is also a Pluralsight assessment author as well as the author of multiple books and online recordings.
Read more about Stéphane Eyskens

Right arrow

Understanding design patterns and their purpose

A design pattern is an admitted best practice to tackle a common problem. Many applications face the same challenges, as follows:

  • They must be performant.
  • They must be testable.
  • They must be maintainable and should be able to grow over time.
  • They must be portable to some extent.
  • They must manage memory and the central processing unit (CPU) efficiently.
  • They must be able to scale.
  • They must support concurrency (thread safety).

The preceding list is only a subset of typical cross-cutting concerns. The purpose of a design pattern is to find the best approach to handle a common problem, regardless of whichever programming language is used.

Design patterns are inspirational and are not especially prescriptive about how the detailed implementation should be done. Design patterns remain high-level, and they aim to improve code quality as well as to ultimately adhere to the SOLID principles, a widely...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Software Architecture for Busy Developers
Published in: Oct 2021Publisher: PacktISBN-13: 9781801071598

Author (1)

author image
Stéphane Eyskens

Stéphane Eyskens has a developer background and became a solution architect about a decade ago. As a cloud subject matter expert, he contributed to many digital transformation programs, helping organizations get better results out of their cloud investments. As an MVP, he is an active contributor to the Microsoft Tech Community and has worked on multiple open source projects available on GitHub. Stéphane is also a Pluralsight assessment author as well as the author of multiple books and online recordings.
Read more about Stéphane Eyskens