doc(experimental): update pubsub docs
Steven Allen committed
May 19, 2020 at 19:25 UTC
df179e03d98f7cbe279f85b450fc7fdd3ec229df
1 file changed
+4
-27
docs/experimental-features.md
+4
-27
@@ -44,35 +44,12 @@ Candidate, disabled by default but will be enabled by default in 0.6.0.
44
run your daemon with the `--enable-pubsub-experiment` flag. Then use the
45
`ipfs pubsub` commands.
46
47
-### gossipsub
48
-
49
-Gossipsub is a new, experimental routing protocol for pubsub that
50
-should waste less bandwidth than floodsub, the current pubsub
51
-protocol. It's backward compatible with floodsub so enabling this
52
-feature shouldn't break compatibility with existing IPFS nodes.
53
-
54
-You can enable gossipsub via configuration:
55
-`ipfs config Pubsub.Router gossipsub`
56
-
57
-### Message Signing
58
-
59
-As of 0.4.18, go-ipfs signs all pubsub messages by default. For now, it doesn't
60
-*reject* unsigned messages but it will in the future.
61
-
62
-You can turn off message signing (not recommended unless you're using a private
63
-network) by running:
64
-`ipfs config Pubsub.DisableSigning true`
65
-
66
-You can turn on strict signature verification (require that all messages be
67
-signed) by running:
68
-`ipfs config Pubsub.StrictSignatureVerification true`
69
-
70
-(this last option will be set to true by default and eventually removed entirely)
47
+Configuration documentation can be found in [./config.md]()
48
49
### Road to being a real feature
73
-- [ ] Needs more people to use and report on how well it works
74
-- [ ] Needs authenticating modes to be implemented
75
-- [ ] needs performance analyses to be done
50
+
51
+- [ ] Needs to not impact peers who don't use pubsub:
52
+ https://github.com/libp2p/go-libp2p-pubsub/issues/332
53
54
## Raw Leaves for unixfs files
55