diff options
| author | Dan Engelbrecht <[email protected]> | 2022-03-15 13:09:02 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-03-31 11:28:32 +0200 |
| commit | c7dfd50ff6ead3ffbba99500885cbe9ffe8975a6 (patch) | |
| tree | 294c5525248199f827ccf5f5020fc8267b4a5a0b /zenstore/cas.cpp | |
| parent | WIP (diff) | |
| download | zen-c7dfd50ff6ead3ffbba99500885cbe9ffe8975a6.tar.xz zen-c7dfd50ff6ead3ffbba99500885cbe9ffe8975a6.zip | |
Use blocks to store data in cas 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 a90e45c04..5b13e27fd 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", 16, IsNewStore); - m_SmallStrategy.Initialize("sobs", 4096, IsNewStore); + m_TinyStrategy.Initialize("tobs", 1L << 30, 16, IsNewStore); + m_SmallStrategy.Initialize("sobs", 1L << 30, 4096, IsNewStore); } bool |