util.go 516 Bytes
Newer Older
1 2
package dht

3
// PoolSize is the number of nodes used for group find/set RPC calls
4
// Deprecated: No longer used
5 6
var PoolSize = 6

7
// KValue is the maximum number of requests to perform before returning failure.
8
// Deprecated: This value is still the default, but changing this parameter no longer does anything.
Jeromy's avatar
Jeromy committed
9
var KValue = 20
10

11
// AlphaValue is the concurrency factor for asynchronous requests.
12
// Deprecated: This value is still the default, but changing this parameter no longer does anything.
13
var AlphaValue = 3