#system-design
Read more stories on Hashnode
Articles with this tag
Pattern It's one of the structural design patterns. This pattern helps to reduce the memory usage by sharing data among multiple objects. This is a...
Object Clonning ยท Introduction It is used when we have to copy/clone an existing object. Consider a scenario where we have an object obtained from a...
Introduction This pattern is used when we have to create only 1 instance of the class There are 6 ways to achieve this Eager Lazy Synchronized...
Introduction Bridge pattern decouples an abstarction from its implementation so that the two can vary independently. UML Diagram In this UML...
Introduction The Facade design pattern is a simple and widely used design pattern. We use the facade design pattern when we want to hide the system...
Introduction The Builder Design Pattern is a creational design pattern that aids in the step-by-step construction of complex objects. It is...