diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-04 19:45:57 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-05-04 19:55:07 +0200 |
| commit | ef12415d287c9307c0c4774aeacff6c91966f693 (patch) | |
| tree | 34f436c3108249b28b120abd6b2346ac2e6251f5 /zenserver/cache/structuredcache.h | |
| parent | default namespace fix (diff) | |
| download | zen-ef12415d287c9307c0c4774aeacff6c91966f693.tar.xz zen-ef12415d287c9307c0c4774aeacff6c91966f693.zip | |
cleanup
Diffstat (limited to 'zenserver/cache/structuredcache.h')
| -rw-r--r-- | zenserver/cache/structuredcache.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/zenserver/cache/structuredcache.h b/zenserver/cache/structuredcache.h index 7e9847838..c41afef12 100644 --- a/zenserver/cache/structuredcache.h +++ b/zenserver/cache/structuredcache.h @@ -25,7 +25,7 @@ class CbObjectView; struct PutRequestData; class ScrubContext; class UpstreamCache; -class NamespaceCacheStore; +class ZenCacheStore; enum class CachePolicy : uint32_t; namespace cache::detail { @@ -64,11 +64,11 @@ namespace cache::detail { class HttpStructuredCacheService : public HttpService, public IHttpStatsProvider, public IHttpStatusProvider { public: - HttpStructuredCacheService(NamespaceCacheStore& InNamespaceCacheStore, - CidStore& InCidStore, - HttpStatsService& StatsService, - HttpStatusService& StatusService, - UpstreamCache& UpstreamCache); + HttpStructuredCacheService(ZenCacheStore& CacheStore, + CidStore& InCidStore, + HttpStatsService& StatsService, + HttpStatusService& StatusService, + UpstreamCache& UpstreamCache); ~HttpStructuredCacheService(); virtual const char* BaseUri() const override; @@ -140,7 +140,7 @@ private: spdlog::logger& Log() { return m_Log; } spdlog::logger& m_Log; - NamespaceCacheStore& m_CacheStore; + ZenCacheStore& m_CacheStore; HttpStatsService& m_StatsService; HttpStatusService& m_StatusService; CidStore& m_CidStore; |