there are three actions in a Service method doSomething { Database write operations redis write call an api } how do I achieve the transactionality or ultimate consistency of this method? if there are only redis and database operations @ T...
as a rookie, recently, when I learned about distributed consistency-related solutions, I found a very painful problem. Many places say that 2pc and 3PC are used, but there are still many problems with two-phase commit. Since this is the case, why do many...
Why does the pbft algorithm require N > = 3f + 1? or what happens when the primary node is a fault node? ...