diff options
| author | Dan Engelbrecht <[email protected]> | 2022-03-21 09:52:44 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-03-31 11:28:33 +0200 |
| commit | c6e5254f900722f9524e4ce8ed9372cde964e09a (patch) | |
| tree | ec6b17af9e4cbdcd331187233a2a8496f4baf0da /zenstore/cas.cpp | |
| parent | remove test code (diff) | |
| download | zen-c6e5254f900722f9524e4ce8ed9372cde964e09a.tar.xz zen-c6e5254f900722f9524e4ce8ed9372cde964e09a.zip | |
Change block size of compactcas stores
Diffstat (limited to 'zenstore/cas.cpp')
| -rw-r--r-- | zenstore/cas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zenstore/cas.cpp b/zenstore/cas.cpp index fef206f2d..38774ee01 100644 --- a/zenstore/cas.cpp +++ b/zenstore/cas.cpp @@ -150,8 +150,8 @@ CasImpl::Initialize(const CasStoreConfiguration& InConfig) // Initialize payload storage m_LargeStrategy.Initialize(IsNewStore); - m_TinyStrategy.Initialize("tobs", CasContainerStrategy::DefaultMaxBlockSize, 16, IsNewStore); - m_SmallStrategy.Initialize("sobs", CasContainerStrategy::DefaultMaxBlockSize, 4096, IsNewStore); + m_TinyStrategy.Initialize("tobs", 1u << 28, 16, IsNewStore); // 256 Mb per block + m_SmallStrategy.Initialize("sobs", 1u << 30, 4096, IsNewStore); // 1 Gb per block } bool |