mi.MemoryResetDelay

mi.MemoryResetDelay

#Overview

name: mi.MemoryResetDelay

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/HAL/MallocMimalloc.cpp:37

Scope: file

Source code excerpt:


static FAutoConsoleVariableRef CVarMiMallocMemoryResetDelay(
	TEXT("mi.MemoryResetDelay"),
	GMiMallocMemoryResetDelay,
	TEXT("The time in milliseconds to keep recently freed memory pages inside the process for reuse. This can dramatically reduce OS overhead of memory zeroing and page faults during alloc intense workloads."),
	FConsoleVariableDelegate::CreateStatic(&ApplyMiMallocMemoryResetDelayChange),
	ECVF_Default
);