aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcachestore.h
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-05-16 17:40:26 +0200
committerGitHub <[email protected]>2022-05-16 17:40:26 +0200
commitca92318203f4a8e2b84d67dfd6a3e8ca40da4cd2 (patch)
tree3c5462ab198a0c67549c94346e7809bfa4e331e3 /zenserver/cache/structuredcachestore.h
parentMerge pull request #97 from EpicGames/actions_tweaks (diff)
parentreview feedback (diff)
downloadzen-ca92318203f4a8e2b84d67dfd6a3e8ca40da4cd2.tar.xz
zen-ca92318203f4a8e2b84d67dfd6a3e8ca40da4cd2.zip
Merge pull request #94 from EpicGames/de/http-cache-api-with-namespaces
http cache uri API with namespaces
Diffstat (limited to 'zenserver/cache/structuredcachestore.h')
-rw-r--r--zenserver/cache/structuredcachestore.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/zenserver/cache/structuredcachestore.h b/zenserver/cache/structuredcachestore.h
index 881285bc9..232e8b9a8 100644
--- a/zenserver/cache/structuredcachestore.h
+++ b/zenserver/cache/structuredcachestore.h
@@ -356,7 +356,8 @@ private:
class ZenCacheStore final : public GcStorage, public GcContributor
{
public:
- static constexpr std::string_view DefaultNamespace = "";
+ static constexpr std::string_view DefaultNamespace = "default";
+ static constexpr std::string_view NamespaceDiskPrefix = "ns_";
ZenCacheStore(CasGc& Gc, std::filesystem::path BasePath);
~ZenCacheStore();