aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp b/searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp
index b7fb3307de6..3f0ffafcf98 100644
--- a/searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp
+++ b/searchlib/src/vespa/searchlib/memoryindex/compact_document_words_store.cpp
@@ -14,7 +14,7 @@ typedef CompactDocumentWordsStore::Builder Builder;
namespace {
-constexpr size_t MIN_CLUSTERS = 1024u;
+constexpr size_t MIN_BUFFER_ARRAYS = 1024u;
size_t
getSerializedSize(const Builder &builder)
@@ -94,7 +94,7 @@ CompactDocumentWordsStore::Iterator::operator++()
CompactDocumentWordsStore::Store::Store()
: _store(),
_type(1,
- MIN_CLUSTERS,
+ MIN_BUFFER_ARRAYS,
RefType::offsetSize()),
_typeId(0)
{