mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
15 lines
550 B
Go
15 lines
550 B
Go
package config
|
|
|
|
type Experiments struct {
|
|
FilestoreEnabled bool
|
|
UrlstoreEnabled bool
|
|
ShardingEnabled bool `json:",omitempty"` // deprecated by autosharding: https://github.com/ipfs/kubo/pull/8527
|
|
GraphsyncEnabled bool
|
|
Libp2pStreamMounting bool
|
|
P2pHttpProxy bool //nolint
|
|
StrategicProviding bool
|
|
AcceleratedDHTClient experimentalAcceleratedDHTClient `json:",omitempty"`
|
|
OptimisticProvide bool
|
|
OptimisticProvideJobsPoolSize int
|
|
}
|