Files
devin doucette ce32414b30 DDC: Disabled propagation of gets from the cache of in-flight puts and added support for write-only cache stores
- Do not invoke the put completion callback from the hierarchy until a put to a readable node succeeds, which is now tracked by bFinished.
- Use StopGetStore on the in-flight put cache to stop gets from that cache from propagating as duplicate puts.
- Disable the in-flight put cache for async wrappers used by propagation of gets.

#jira UE-192655
#rb Zousar.Shaker

[CL 27771618 by devin doucette in ue5-main branch]
2023-09-11 17:24:27 -04:00

20 lines
408 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "DerivedDataLegacyCacheStore.h"
namespace UE::DerivedData
{
class IMemoryCacheStore : public ILegacyCacheStore
{
public:
virtual void Delete(const FCacheKey& Key, const FSharedString& Name) = 0;
virtual void DeleteValue(const FCacheKey& Key, const FSharedString& Name) = 0;
virtual void Disable() = 0;
};
} // UE::DerivedData