s.MaxIncomingRequestsToStall
s.MaxIncomingRequestsToStall
#Overview
name: s.MaxIncomingRequestsToStall
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Controls the maximum number of unhandled IO requests before we stall the pak precacher to let the CPU catch up.
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:611
Scope: file
Source code excerpt:
int32 GMaxIncomingRequestsToStall = 100;
static FAutoConsoleVariableRef CVar_MaxIncomingRequestsToStall(
TEXT("s.MaxIncomingRequestsToStall"),
GMaxIncomingRequestsToStall,
TEXT("Controls the maximum number of unhandled IO requests before we stall the pak precacher to let the CPU catch up.")
);
int32 GProcessPrestreamingRequests = 0;
static FAutoConsoleVariableRef CVar_ProcessPrestreamingRequests(