-
Looking at the code impl of As I understand, being a key-value network, the Further to that, In a word, I'd like to confirm and know : Thank you very much in advance, and looking forward to any replies. One more thing to add regarding |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Correct.
The number is equal to the number of peers contacted, plus the optional local instance.
Yes, you will get all the different ones and need to decide which one to use.
Kademlia is an eventual consistent network with no consistency guarantees. There is no consensus protocol.
Correct. There is no quorum for
There is no such thing as a majority. I.e. at any point one of the currently closest 20 peers might give us even closer peers to contact. Thus we need to wait for responses from the closest 20 peers in order to eventually terminate. We could adjust the request timeouts though in case that is of some help. @maqi let me know if the above is helpful. |
Beta Was this translation helpful? Give feedback.
Correct.
The number is equal to the number of peers contacted, plus the optional local instance.
Yes, you will get all the different ones and need to decide which one to use.