search
HomeBackend DevelopmentPHP TutorialIntroduction to PHP recycling cycle
Introduction to PHP recycling cycleFeb 28, 2019 pm 02:29 PM
phpGarbage collection

This article brings you an introduction to the PHP recycling cycle. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

The following procedure only works for array and object types.

Traditionally, the reference counting memory mechanism used in PHP cannot handle circular reference memory leaks. However, PHP 5.3.0 uses the synchronization algorithm in the article » Concurrent Cycle Collection in Reference Counted Systems to deal with this memory leak problem.

A complete description of the algorithm is somewhat beyond the scope of this section, and only the basics will be introduced. First, we need to establish some basic rules. If a reference count is increased, it will continue to be used and of course no longer in the garbage. If the reference count is reduced to zero, the variable container will be cleared (free). That is, a garbage cycle occurs only when the reference count decreases to a non-zero value. Secondly, during a garbage cycle, find out which parts are garbage by checking whether the reference count is reduced by 1 and checking which variable containers have zero references.

Introduction to PHP recycling cycle

To avoid having to check all garbage cycles where the reference count may be reduced, this algorithm puts all possible roots (possible roots are zval variable containers) in the root buffer (root buffer) (marked in purple, called suspected garbage), this can also ensure that each possible garbage root (possible garbage root) appears only once in the buffer. Garbage collection is performed on all different variable containers within the buffer only when the root buffer is full. Look at step A in the image above.

In step B, simulate deleting each purple variable. When simulating deletion, the reference count of ordinary variables that are not purple may be reduced by "1". If the reference count of an ordinary variable becomes 0, simulate deletion of this ordinary variable again. Each variable can only be simulated deleted once, and it will be marked gray after simulated deletion (the original article said to ensure that the same variable container is not decremented by "1" twice, which is wrong).

In step C, the simulation restores each purple variable. Recovery is conditional. When the reference count of the variable is greater than 0, simulated recovery is performed. Similarly, each variable can only be restored once. After restoration, it is marked as black. It is basically the inverse operation of step B. In this way, the remaining pile of unrecoverable blue nodes are the blue nodes that should be deleted. Traverse them in step D and delete them.

The algorithms are all simulated deletion, simulated recovery, and real deletion, all using simple traversal (the most typical deep search traversal). The complexity is positively related to the number of nodes performing simulation operations, not just those suspected garbage variables in purple.

Now that you have a basic understanding of this algorithm, let's go back and see how this is integrated with PHP. By default, PHP's garbage collection mechanism is turned on, and there is a php.ini setting that allows you to modify it: zend.enable_gc.

When the garbage collection mechanism is turned on, the loop search algorithm described above will be executed whenever the root buffer is full. The root cache area has a fixed size and can store 10,000 possible roots. Of course, you can modify this 10,000 value by modifying the constant GC_ROOT_BUFFER_MAX_ENTRIES in the PHP source file Zend/zend_gc.c and then recompiling PHP. When garbage collection is turned off, the loop search algorithm never executes, however, it is possible that the root will always exist in the root buffer regardless of whether garbage collection is activated in the configuration.

When the garbage collection mechanism is turned off, if the root buffer is full of possible roots, more possible roots will obviously not be recorded. Possible roots that are not recorded will not be analyzed and processed by this algorithm. If they are part of a cyclic reference cycle, they will never be cleared and cause a memory leak.

The reason possible roots are recorded even when garbage collection is unavailable is that recording possible roots is faster than checking whether garbage collection is turned on each time a possible root is found. However, the garbage collection and analysis mechanism itself takes a lot of time.

In addition to modifying the configuration zend.enable_gc, you can also turn on and off the garbage collection mechanism by calling the gc_enable() and gc_disable() functions respectively. Calling these functions has the same effect as modifying configuration items to turn on or off the garbage collection mechanism. Ability to force periodic collection even when the root buffer may not be full. You can call the gc_collect_cycles() function for this purpose. This function will return the number of cycles recycled using this algorithm.

The reason you allow turning garbage collection on and off and allowing autonomous initialization is because some parts of your application may be time-sensitive. In this case, you probably don't want to use garbage collection. Of course, turning off garbage collection for certain parts of your application runs the risk of possible memory leaks, since some possible roots may not fit into the limited root buffer. Therefore, just before you call the gc_disable() function to release the memory, it may be wise to call the gc_collect_cycles() function first. Because this will clear all possible roots that have been stored in the root buffer, then when the garbage collection mechanism is turned off, an empty buffer can be left to have more space to store possible roots.


The above is the detailed content of Introduction to PHP recycling cycle. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
C#开发中如何避免内存泄漏C#开发中如何避免内存泄漏Oct 08, 2023 am 09:36 AM

C#开发中如何避免内存泄漏,需要具体代码示例内存泄漏是软件开发过程中常见的问题之一,特别是在使用C#语言进行开发时。内存泄漏会导致应用程序占用越来越多的内存空间,最终导致程序运行缓慢甚至崩溃。为了避免内存泄漏,我们需要注意一些常见的问题并采取相应措施。及时释放资源在C#中,使用完资源后一定要及时释放它们,尤其是涉及到文件操作、数据库连接和网络请求等资源。可以

C#中常见的内存管理问题及解决方法C#中常见的内存管理问题及解决方法Oct 11, 2023 am 09:21 AM

C#中常见的内存管理问题及解决方法,需要具体代码示例在C#开发中,内存管理是一个重要的问题,不正确的内存管理可能会导致内存泄漏和性能问题。本文将向读者介绍C#中常见的内存管理问题,并提供解决方法,并给出具体的代码示例。希望能帮助读者更好地理解和掌握内存管理技术。垃圾回收器不及时释放资源C#中的垃圾回收器(GarbageCollector)负责自动释放不再使

PHP中的内存管理和垃圾回收技术PHP中的内存管理和垃圾回收技术May 11, 2023 am 08:33 AM

PHP作为一种广泛使用的脚本语言,为了在运行时保证高效执行,具有独特的内存管理和垃圾回收技术。本文将简单介绍PHP内存管理和垃圾回收的原理和实现方式。一、PHP内存管理的原理PHP的内存管理采用了引用计数(ReferenceCounting)来实现,这种方式是现代化的语言中比较常见的内存管理方式之一。当一个变量被使用时,PHP会为其分配一段内存,并将这段内

Python开发中遇到的内存管理问题及解决方案Python开发中遇到的内存管理问题及解决方案Oct 09, 2023 pm 09:36 PM

Python开发中遇到的内存管理问题及解决方案摘要:在Python开发过程中,内存管理是一个重要的问题。本文将讨论一些常见的内存管理问题,并介绍相应的解决方案,包括引用计数、垃圾回收机制、内存分配、内存泄漏等。并提供了具体的代码示例来帮助读者更好地理解和应对这些问题。引用计数Python使用引用计数来管理内存。引用计数是一种简单而高效的内存管理方式,它记录每

Java开发中如何解决堆内存空间不足问题Java开发中如何解决堆内存空间不足问题Jun 29, 2023 am 11:11 AM

Java作为一门广泛使用的编程语言,由于其自动内存管理机制,特别是垃圾回收机制的存在,使得开发人员无需过多关注内存的分配和释放。然而,在一些特殊情况下,例如处理大数据或者运行复杂的算法时,Java程序可能会遇到堆内存空间不足的问题。本文将讨论如何解决这个问题。一、了解堆内存空间堆内存是Java虚拟机(JVM)中分配给Java程序运行时使用的内存空间。它存储了

Java开发中如何避免网络连接泄露?Java开发中如何避免网络连接泄露?Jun 30, 2023 pm 01:33 PM

如何解决Java开发中的网络连接泄露问题随着信息技术的高速发展,网络连接在Java开发中变得越来越重要。然而,Java开发中的网络连接泄露问题也逐渐凸显出来。网络连接泄露会导致系统性能下降、资源浪费以及系统崩溃等问题,因此解决网络连接泄露问题变得至关重要。网络连接泄露是指在Java开发中未正确关闭网络连接,导致连接资源无法释放,从而使系统无法正常工作。解决网

go语言有垃圾回收吗go语言有垃圾回收吗Dec 09, 2022 pm 07:42 PM

go语言有垃圾回收。Go语言自带垃圾回收机制(GC);GC通过独立的进程执行,它会搜索不再使用的变量,并将其释放。在计算中。内存空间包含两个重要的区域:栈区 (Stack) 和堆区 (Heap);栈区一般存储了函数调用的参数、返回值以及局部变量,不会产生内存碎片,由编译器管理,无需开发者管理;而堆区会产生内存碎片,在Go语言中堆区的对象由内存分配器分配并由垃圾收集器回收。

如何使用Go语言进行内存优化与垃圾回收如何使用Go语言进行内存优化与垃圾回收Sep 29, 2023 pm 05:37 PM

如何使用Go语言进行内存优化与垃圾回收Go语言作为一门高性能、并发、效率高的编程语言,对于内存的优化和垃圾回收有着很好的支持。在开发Go程序时,合理地管理和优化内存使用,能够提高程序的性能和可靠性。使用合适的数据结构在Go语言中,选择合适的数据结构对内存的使用有很大的影响。例如,对于需要频繁添加和删除元素的集合,使用链表代替数组可以减少内存碎片的产生。另外,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.