diff options
| author | Dan Engelbrecht <[email protected]> | 2025-05-12 10:22:17 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-05-12 10:22:17 +0200 |
| commit | 00dc4e3d0976e0f0cbd8a09a7693bad31b8db511 (patch) | |
| tree | 25228db7c0f3029b4784d0e44d07d0a4cb7bae64 /src/zenstore/include | |
| parent | tweak iterate block parameters (#390) (diff) | |
| download | zen-00dc4e3d0976e0f0cbd8a09a7693bad31b8db511.tar.xz zen-00dc4e3d0976e0f0cbd8a09a7693bad31b8db511.zip | |
enable per bucket config (#388)
Feature: Add per bucket cache configuration (Lua options file only)
Improvement: --cache-memlayer-sizethreshold is now deprecated and has a new name: --cache-bucket-memlayer-sizethreshold to line up with per cache bucket configuration
Diffstat (limited to 'src/zenstore/include')
| -rw-r--r-- | src/zenstore/include/zenstore/cache/cachedisklayer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zenstore/include/zenstore/cache/cachedisklayer.h b/src/zenstore/include/zenstore/cache/cachedisklayer.h index 5a51718d3..f36e780b9 100644 --- a/src/zenstore/include/zenstore/cache/cachedisklayer.h +++ b/src/zenstore/include/zenstore/cache/cachedisklayer.h @@ -119,6 +119,9 @@ public: struct Configuration { + typedef eastl::unordered_map<std::string, BucketConfiguration, std::hash<std::string>, std::equal_to<std::string>> + BucketConfigMap_t; + BucketConfigMap_t BucketConfigMap; BucketConfiguration BucketConfig; uint64_t MemCacheTargetFootprintBytes = 512 * 1024 * 1024; uint64_t MemCacheTrimIntervalSeconds = 60; |