aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcache.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-21 15:42:57 +0200
committerStefan Boberg <[email protected]>2021-09-21 15:42:57 +0200
commitcecb61f2375bebd95ef344f17795713fe3b6d0a2 (patch)
tree467d97d39ceb7c824fdd85279d549bcfd2fa5a3b /zenserver/cache/structuredcache.h
parentEncapsulated containers in CasChunkSet to allow for more efficient udpates/qu... (diff)
parentMerge branch 'main' of https://github.com/EpicGames/zen (diff)
downloadzen-cecb61f2375bebd95ef344f17795713fe3b6d0a2.tar.xz
zen-cecb61f2375bebd95ef344f17795713fe3b6d0a2.zip
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zenserver/cache/structuredcache.h')
-rw-r--r--zenserver/cache/structuredcache.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/zenserver/cache/structuredcache.h b/zenserver/cache/structuredcache.h
index c673ea1f5..edf011ae4 100644
--- a/zenserver/cache/structuredcache.h
+++ b/zenserver/cache/structuredcache.h
@@ -71,7 +71,9 @@ private:
};
[[nodiscard]] bool ValidateKeyUri(zen::HttpServerRequest& Request, CacheRef& OutRef);
- void HandleCacheRecordRequest(zen::HttpServerRequest& Request, CacheRef& Ref, CachePolicy Policy);
+ void HandleCacheRecordRequest(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy);
+ void HandleGetCacheRecord(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy);
+ void HandlePutCacheRecord(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy);
void HandleCachePayloadRequest(zen::HttpServerRequest& Request, CacheRef& Ref, CachePolicy Policy);
void HandleCacheBucketRequest(zen::HttpServerRequest& Request, std::string_view Bucket);