How to create a Singleton Pattern?

Blog
Spread the love

This blog we will be learn How to create a Singleton Pattern?

Introduction about Singleton Design Pattern.

  • The Singleton design pattern restricts the instantiate of a class to one object.
  • Class has only one instance and that instance can be accessed globally in a application.
  • Useful to restrict the limited no. of connections in a database or limited amount of memory for a particular instance of class.

How to create a Singleton Pattern?

  • Static member variable – It acts as a placeholder for the instance of that class
  • Private Constructor – Private constructor prevents direct instantiate of a class.
  • Prevent object cloning by making clone magic method private (__construct(), __destruct(), __toString(), __get(), __set(), __call() etc).
  • Create a static method for global access.

How it will work:

  • We have to create one static method, that static method should return the single instance of the class.
  • Instance will create for this class when we calling the time of this method.
  • Created instance save into one private static variable & this variable returns the instance whenever you want.
  • Second time on wards whenever you want it will fetch it from this static variable & it will return instead of create again.

Real Time Sample Example:

Ex:1 Database creation in PHP:

Consider we want to fetch some values from Database more than 10 times (approx.). In this case each & every time if you create a database connection (approx. 10 times) and contacting a DB is not a correct way. Due to this more memory will take & off-course more effort will have gone. To avoid this, better create one instance for connecting the DB & use till that times (approx.). Whenever you are call this method check whether your variable is having the active instance or not. If there the use same else create new instance (DB connection code).

Ex: 2 Customer Login

In all the website whenever you are login as a customer that customer object is active till logout. We case use that object/instance to get the customer detail with the session.

Disadvantage:

  • Not able to inherit
  • We can’t clone the instance. If you clone or copy the instance, then singleton design pattern is end in that application. We cannot use that instance object globally.
  • Second instance we couldn’t able to create.
bluethinkinc_blog

bluethinkinc_blog

2022-11-16

0

Leave a Reply

Your email address will not be published. Required fields are marked *

Find More Blogs

How to Add a Custom Tab to the Customer Order Detail Page in Magento 2

Spread the love Adding a custom tab to the Order Detail

Exception Handling in Java

Spread the love Introduction – Exception:An unwanted

How to add custom less file in Magento2

Spread the love Source files *.css included into layout

Spring Boot Microservices

Spread the love Microservices architecture has become

Implementation of WireMock for better testing

Spread the love WireMock is a flexible and powerful tool

Magento 2: How to selected default option in configurable options?

Spread the love Configurable products in Magento 2 allow

How To Implement Simple JWT Authentication in Django Rest Framework

Spread the love We’ll learn how to use simple JWT

Optimizing Search: Integrating Elasticsearch in Django Applications

Spread the love What is Elasticsearch? Elasticsearch is a

How to create Customer Segments

Spread the love In Magento 2, “customer

Proxy Design Pattern and Requisition List in Magento 2

Spread the love Requisition List in Magento 2 Requisition

bluethinkinc Blogs