We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51db27a commit 6d88fb5Copy full SHA for 6d88fb5
ydb/core/tablet_flat/shared_cache_switchable.h
@@ -214,12 +214,7 @@ class TSwitchableCache : public ICacheCache<TPage> {
214
215
while (!rotatedList.Empty()) {
216
TPage* page = rotatedList.PopFront();
217
-
218
- // touch each page multiple times to make it warm
219
- for (ui32 touchTimes = 0; touchTimes < 3; touchTimes++) {
220
- evictedList.Append(Caches.back().Touch(page));
221
- }
222
+ evictedList.Append(Caches.back().Touch(page));
223
rotatedPagesCount++;
224
}
225
0 commit comments