You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: compact the log whenever we know all members of the cluster have seen
143
-
// TODO: Optimization: gap collapsing: [+a,+b,+c,-c] -> [+a,+b,gap(until:4)]
144
-
// TODO: Optimization: head collapsing: [+a,+b,+c,-b,-a] -> [gap(until:2),+c,-b]
145
-
//
146
-
// TODO: slow/fast ticks: When we know there's nothing new to share with others, we use the slow tick (which should be increased to 5 seconds or less)
147
-
// when we received a register() or observed an "ahead" receptionist, we should schedule a "fast tick" in order to more quickly spread this information
148
-
// This should still be done on a delay, e.g. if we are receiving many registrations, we want to get the benefit of batching them up before sending after all
149
-
// The fast tick could be 1s or 0.5s for example as a default.
// TODO: compact the log whenever we know all members of the cluster have seen
143
+
// TODO: Optimization: gap collapsing: [+a,+b,+c,-c] -> [+a,+b,gap(until:4)]
144
+
// TODO: Optimization: head collapsing: [+a,+b,+c,-b,-a] -> [gap(until:2),+c,-b]
145
+
//
146
+
// TODO: slow/fast ticks: When we know there's nothing new to share with others, we use the slow tick (which should be increased to 5 seconds or less)
147
+
// when we received a register() or observed an "ahead" receptionist, we should schedule a "fast tick" in order to more quickly spread this information
148
+
// This should still be done on a delay, e.g. if we are receiving many registrations, we want to get the benefit of batching them up before sending after all
149
+
// The fast tick could be 1s or 0.5s for example as a default.
0 commit comments