aboutsummaryrefslogtreecommitdiff
path: root/zenserver/zenserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zenserver/zenserver.cpp')
-rw-r--r--zenserver/zenserver.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/zenserver/zenserver.cpp b/zenserver/zenserver.cpp
index 9b7083312..e572e6a49 100644
--- a/zenserver/zenserver.cpp
+++ b/zenserver/zenserver.cpp
@@ -102,7 +102,6 @@ ZEN_THIRD_PARTY_INCLUDES_END
#include "admin/admin.h"
#include "auth/authmgr.h"
#include "auth/authservice.h"
-#include "cache/namespacecachestore.h"
#include "cache/structuredcache.h"
#include "cache/structuredcachestore.h"
#include "compute/function.h"
@@ -612,7 +611,7 @@ private:
zen::GcScheduler m_GcScheduler{m_CasGc};
std::unique_ptr<zen::CasStore> m_CasStore{zen::CreateCasStore(m_CasGc)};
std::unique_ptr<zen::CidStore> m_CidStore;
- std::unique_ptr<zen::NamespaceCacheStore> m_CacheStore;
+ std::unique_ptr<zen::ZenCacheStore> m_CacheStore;
zen::CasScrubber m_Scrubber{*m_CasStore};
zen::HttpTestService m_TestService;
zen::HttpTestingService m_TestingService;
@@ -756,7 +755,7 @@ ZenServer::InitializeStructuredCache(const ZenServerOptions& ServerOptions)
using namespace std::literals;
ZEN_INFO("instantiating structured cache service");
- m_CacheStore = std::make_unique<NamespaceCacheStore>(m_DataRoot / "cache", m_CasGc);
+ m_CacheStore = std::make_unique<ZenCacheStore>(m_DataRoot / "cache", m_CasGc);
const ZenUpstreamCacheConfig& UpstreamConfig = ServerOptions.UpstreamCacheConfig;