Ias.AbandonCache
Ias.AbandonCache
#Overview
name: Ias.AbandonCache
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Abandon the local file cache
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/Experimental/IoStoreOnDemand/Private/OnDemandIoDispatcherBackend.cpp:221
Scope (from outer to inner):
file
namespace UE::IO::IAS
Source code excerpt:
#if !UE_BUILD_SHIPPING
static FAutoConsoleCommand CVar_IasAbandonCache(
TEXT("Ias.AbandonCache"),
TEXT("Abandon the local file cache"),
FConsoleCommandDelegate::CreateLambda([]()
{
FIoStoreOnDemandModule& Module = FModuleManager::Get().GetModuleChecked<FIoStoreOnDemandModule>("IoStoreOnDemand");
Module.AbandonCache();
})