s.MaxReadyRequestsToStallMB
s.MaxReadyRequestsToStallMB
#Overview
name: s.MaxReadyRequestsToStallMB
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Controls the maximum amount memory for unhandled IO requests before we stall the pak precacher to let the CPU catch up (in megabytes).
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/CoreUObject/Private/Serialization/AsyncLoading.cpp:597
Scope: file
Source code excerpt:
int32 GMaxReadyRequestsToStallMB = 30;
static FAutoConsoleVariableRef CVar_MaxReadyRequestsToStallMB(
TEXT("s.MaxReadyRequestsToStallMB"),
GMaxReadyRequestsToStallMB,
TEXT("Controls the maximum amount memory for unhandled IO requests before we stall the pak precacher to let the CPU catch up (in megabytes).")
);
int32 GMaxPrecacheRequestsInFlight = 2;
static FAutoConsoleVariableRef CVar_MaxPrecacheRequestsInFlight(