Navigation
API > API/Developer > API/Developer/DerivedDataCache > API/Developer/DerivedDataCache/ICache
Description
Asynchronous request to put records in the cache.
| Name | Put |
| Type | function |
| Header File | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataCache.h |
| Include Path | #include "DerivedDataCache.h" |
void Put
(
TConstArrayView< FCachePutRequest > Requests,
IRequestOwner & Owner,
FOnCachePutComplete && OnComplete
)
Parameters
| Name | Remarks |
|---|---|
| Requests | Requests with the cache records to store. Records must have a key. |
| Owner | The owner to execute the request within. See IRequestOwner. |
| OnComplete | A callback invoked for every request as it completes or is canceled. |