aboutsummaryrefslogtreecommitdiff
path: root/zenstore/cas.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-03-15 13:09:02 +0100
committerDan Engelbrecht <[email protected]>2022-03-31 11:28:32 +0200
commitc7dfd50ff6ead3ffbba99500885cbe9ffe8975a6 (patch)
tree294c5525248199f827ccf5f5020fc8267b4a5a0b /zenstore/cas.cpp
parentWIP (diff)
downloadzen-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.cpp4
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