s.MaxPrecacheRequestsInFlight
s.MaxPrecacheRequestsInFlight
#Overview
name: s.MaxPrecacheRequestsInFlight
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Controls the maximum amount of precache requests to have in flight.
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:604
Scope: file
Source code excerpt:
int32 GMaxPrecacheRequestsInFlight = 2;
static FAutoConsoleVariableRef CVar_MaxPrecacheRequestsInFlight(
TEXT("s.MaxPrecacheRequestsInFlight"),
GMaxPrecacheRequestsInFlight,
TEXT("Controls the maximum amount of precache requests to have in flight.")
);
int32 GMaxIncomingRequestsToStall = 100;
static FAutoConsoleVariableRef CVar_MaxIncomingRequestsToStall(