r.VT.EvictFileCache

r.VT.EvictFileCache

#Overview

name: r.VT.EvictFileCache

This variable is created as a Console Variable (cvar).

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:335

Scope (from outer to inner):

file
function     FFileCache::FFileCache

Source code excerpt:


FFileCache::FFileCache(int32 NumSlots)
	: EvictFileCacheCommand(TEXT("r.VT.EvictFileCache"), TEXT("Evict all the file caches in the VT system."),
		FConsoleCommandDelegate::CreateRaw(this, &FFileCache::EvictFileCacheFromConsole))
	, SizeInBytes(NumSlots * CacheSlotID::GetSize())
	, NumFreeSlots(NumSlots)
	, MinNumFreeSlots(NumSlots)
{
	LLM_SCOPE(ELLMTag::FileSystem);