PHP design pattern FlyWeight (flyweight pattern)_PHP tutorial
Flyweight Pattern is called "Flyweight Pattern" in English. I am very grateful to the person who translated Flyweight Pattern into Flyweight Pattern, because this word clearly expresses the way this pattern is used; if it is translated into Featherweight Pattern or Flyweight mode, etc., although they can implicitly express the purpose of using this mode, they still miss the key to this mode.
The Flyweight pattern is defined as: using a share to avoid the overhead of having a large number of objects with the same content. The most common and intuitive of this overhead is the loss of memory. Flyweight mode efficiently supports a large number of fine-grained objects in a shared manner.
The core concept of sharing is reflected in the name and definition, so how to achieve sharing? We must know that every thing is different, but there are certain commonalities. If only the same things can be shared, then the flyweight model can be said to be unfeasible; therefore, we should try our best to share the commonalities of things while retaining Its personality. In order to achieve this, the flyweight model distinguishes between intrinsic state and extrinsic state. The inner state is the commonality, and the outer state is the individuality.
Note: Shared objects must be immutable, otherwise all changes will occur (except if there is such a requirement).
The intrinsic state is stored inside the flyweight and will not change with changes in the environment and can be shared; the extrinsic state cannot be shared and changes with changes in the environment, so The extrinsic state is maintained by the client (because changes in the environment are caused by the client). In each specific environment, the client passes the extrinsic state to the flyweight to create different objects.
First, take a look at the program below to get a general understanding of the flyweight mode.
/**
* Flyweight mode
*
* Use flyweight technology to effectively support a large number of fine-grained objects
*/
class CD
{
private $_title = null;
private $_artist = null;
public function setTitle($title)
{
$this->_title = $title;
}
public function getTitle()
{
return $this->_title;
}
public function setArtist($artist)
{
$this->_artist = $artist;
}
public function getArtist($artist)
{
return $this->_artist;
}
}
class Artist
{
private $_name;
public function __construct($name)
{
echo "construct ".$name."
";
$this->_name = $name;
}
public function getName()
{
return $this->_name;
}
}
class ArtistFactory
{
private $_artists = array();
public function getArtist($name)
{
if(isset($this->_artists[$name]))
{
return $this->_artists[$name];
} else {
$objArtist = new Artist($name);
$this->_artists[$name ] = $objArtist;
return $objArtist;
}
}
}
$objArtistFactory = new ArtistFactory();
$objCD1 = new CD();
$ objCD1->setTitle("title1");
$objCD1->setArtist($objArtistFactory->getArtist('artist1'));
$objCD2 = new CD();
$objCD2 ->setTitle("title2");
$objCD2->setArtist($objArtistFactory->getArtist('artist2'));
$objCD3 = new CD();
$objCD3- >setTitle("title3");
$objCD3->setArtist($objArtistFactory->getArtist('artist1'));
The essence of flyweight model is three points:
- For fine-grained objects that are widely used by the system, how fine the granularity and how large the amount should be, just look at the flyweight mode used in jdk. In jdk, Integer, Character, String, etc. all use flyweight Schemas, they are the most basic data types, they are very detailed, they frequently participate in calculations, they are very large.
- Divide the intrinsic attributes/state and the extrinsic attributes/state of the object; the so-called intrinsic state is the state that exists inside the object and does not change with the environment. One netizen said it very well, that is, there is no difference. State, that is, after removing the extrinsic attributes, there is no difference between objects of the same type. The intrinsic state of the object is the object's spirit. As long as the spirit and spirit are indistinguishable, then the objects will also be indistinguishable. At the same time, only these undifferentiated spirits can Being shared, I think this is also the reason why Flyweight is translated into flyweight. The extrinsic state is a state specified by the client and changes with the environment; for Integer, its intrinsic attribute is actually its value (of course it has no extrinsic attribute);
- Use a factory to control the creation of flyweights; because flyweight objects cannot be created at will by the client, otherwise it will be meaningless. Factories usually provide a caching mechanism to save already created flyweights.
Although object-oriented solves the problem of abstraction very well, for an actual running software system, we also need to consider the cost of object-oriented. The flyweight pattern solves the cost of object-oriented. Flyweight mode uses object sharing to reduce the number of objects in the system, thereby reducing the memory pressure that fine-grained objects bring to the system.
The flyweight mode is not commonly used in general project development, but is often used in the development of the underlying system to solve system performance problems. The String type in Java and .Net uses the flyweight pattern. If a string object s1 has been created in Java or .NET, then the next time the same string s2 is created, the system will just point the reference of s2 to the specific object referenced by s1, which achieves the same string Sharing in memory. If a new string object is created every time the s1="abc" operation is executed, the memory overhead will be very large.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
