1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-08 04:59:37 +02:00

throttle: set default to 0.0

Longer latency testing runs are not showing a consistent gain from a
throttle factor of 1.0.  Make the default more conservative.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
Dieser Commit ist enthalten in:
Zygo Blaxell
2024-12-27 13:01:28 -05:00
Ursprung bd9dc0229b
Commit 81bbf7e1d4
+1 -1
Datei anzeigen
@@ -305,7 +305,7 @@ bees_unreadahead(int const fd, off_t offset, size_t size)
BEESCOUNTADD(readahead_unread_ms, unreadahead_timer.age() * 1000);
}
static double bees_throttle_factor = 1.0;
static double bees_throttle_factor = 0.0;
void
bees_throttle(const double time_used, const char *const context)