From 6eff7693959d8325dcc11722b9c1bacd54dcf728 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 23 Apr 2020 18:31:06 +0200 Subject: [PATCH] Block size does not affect retrieval speed --- core-buffer/include/buffer_config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index e4535f9..f5bec4a 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -23,7 +23,7 @@ namespace core_buffer { const std::string FILE_EXTENSION = ".h5"; // How many frames do we read at once during replay. - const size_t REPLAY_BLOCK_SIZE = 200; + const size_t REPLAY_BLOCK_SIZE = 100; // Size of sf_buffer RB in elements. const size_t BUFFER_RB_SIZE = 1000;