react slower

This commit is contained in:
Quentin Dufour
2025-04-30 08:37:35 +02:00
parent 60b3d28f93
commit 6cc79bc696
+3 -3
View File
@@ -21,10 +21,10 @@ use crate::replication::*;
use crate::schema::*;
use crate::util::*;
pub(crate) const MERKLE_SLEEP_INITIAL: Duration = Duration::from_micros(10);
pub(crate) const MERKLE_SLEEP_INITIAL: Duration = Duration::from_micros(1);
pub(crate) const MERKLE_SLEEP_MAX: Duration = Duration::from_secs(2);
pub(crate) const MERKLE_SLEEP_ADD_DECREASE: Duration = Duration::from_micros(10);
pub(crate) const MERKLE_SLEEP_MULT_INCREASE: f32 = 1.2;
pub(crate) const MERKLE_SLEEP_ADD_DECREASE: Duration = Duration::from_micros(1);
pub(crate) const MERKLE_SLEEP_MULT_INCREASE: f32 = 1.1;
pub struct TableData<F: TableSchema, R: TableReplication> {
system: Arc<System>,