AsyncReadFile.CacheHandleForPakFilesOnly
AsyncReadFile.CacheHandleForPakFilesOnly
#Overview
name: AsyncReadFile.CacheHandleForPakFilesOnly
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Control how Async read handle caches the underlying platform handle for files.\n0: Cache the underlying platform handles for all files.\n1: Cache the underlying platform handle for .pak files only (default).\n
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/GenericPlatform/GenericPlatformFile.cpp:224
Scope: file
Source code excerpt:
static int32 GCacheHandleForPakFilesOnly = 1;
static FAutoConsoleVariableRef CVarCacheHandleForPakFilesOnly(
TEXT("AsyncReadFile.CacheHandleForPakFilesOnly"),
GCacheHandleForPakFilesOnly,
TEXT("Control how Async read handle caches the underlying platform handle for files.\n"
"0: Cache the underlying platform handles for all files.\n"
"1: Cache the underlying platform handle for .pak files only (default).\n"),
ECVF_Default
);