aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenserver/config.h')
-rw-r--r--src/zenserver/config.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/zenserver/config.h b/src/zenserver/config.h
index e7b734001..58a31bbb0 100644
--- a/src/zenserver/config.h
+++ b/src/zenserver/config.h
@@ -78,6 +78,8 @@ struct ZenGcConfig
bool SingleThreaded = false;
static constexpr uint16_t GcMaxAttachmentPassCount = 256;
uint16_t AttachmentPassCount = 1;
+ bool StoreCacheAttachmentMetaData = false;
+ bool StoreProjectAttachmentMetaData = false;
};
struct ZenOpenIdProviderConfig
@@ -119,12 +121,12 @@ struct ZenStructuredCacheConfig
uint64_t MemTargetFootprintBytes = 512 * 1024 * 1024;
uint64_t MemTrimIntervalSeconds = 60;
uint64_t MemMaxAgeSeconds = gsl::narrow<uint64_t>(std::chrono::seconds(std::chrono::days(1)).count());
- bool StoreAttachmentMetaData = false;
};
struct ZenProjectStoreConfig
{
- bool StoreAttachmentMetaData = false;
+ bool StoreCacheAttachmentMetaData = false;
+ bool StoreProjectAttachmentMetaData = false;
};
struct ZenWorkspacesConfig