util.go 275 Bytes
Newer Older
1 2 3 4 5
package dht

// Pool size is the number of nodes used for group find/set RPC calls
var PoolSize = 6

Jeromy's avatar
Jeromy committed
6
// K is the maximum number of requests to perform before returning failure.
Jeromy's avatar
Jeromy committed
7
var KValue = 20
8

Jeromy's avatar
Jeromy committed
9
// Alpha is the concurrency factor for asynchronous requests.
10
var AlphaValue = 3