fc.BlockSize
fc.BlockSize
#Overview
name: fc.BlockSize
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Size of each block in KB in the global file cache object\nShould match packaging compression block size for optimal reading from packege
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/FileCache/FileCache.cpp:30
Scope: file
Source code excerpt:
static int32 GFileCacheBlockSizeKB = 64;
static FAutoConsoleVariableRef CVarFileCacheBlockSize(
TEXT("fc.BlockSize"),
GFileCacheBlockSizeKB,
TEXT("Size of each block in KB in the global file cache object\n"
"Should match packaging compression block size for optimal reading from packege"),
ECVF_ReadOnly
);