data: Reduced number of storages in shared memory queue until indexer starts waiting to 2 to save memory

This commit is contained in:
Eberhard Graether
2018-11-21 11:50:20 +01:00
parent 7ada0b56f9
commit 8e0a60eec7
@@ -63,7 +63,7 @@ void InterprocessIndexer::work()
while (true)
{
const size_t storageCount = m_interprocessIntermediateStorageManager.getIntermediateStorageCount();
if (storageCount < 10)
if (storageCount < 2)
{
break;
}