From 11cf6ed5c69ab1fbbf83662a7cc8b2f0f0c00789 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Mon, 15 May 2017 16:47:41 +0200 Subject: [PATCH] re-set fillgrades back to original values --- arangod/Cache/Table.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangod/Cache/Table.h b/arangod/Cache/Table.h index dc982e4f24..801128674a 100644 --- a/arangod/Cache/Table.h +++ b/arangod/Cache/Table.h @@ -179,8 +179,8 @@ class Table : public std::enable_shared_from_this { uint32_t idealSize() const; private: - static constexpr double idealLowerRatio = 0.05; - static constexpr double idealUpperRatio = 0.33; + static constexpr double idealLowerRatio = 0.125; + static constexpr double idealUpperRatio = 0.75; State _state;