Listener as IPNS record publisher #6
Winterhuman
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
(Jaguwr came up with this idea)
Right now, the Publisher is the only node which publishes the IPNS records, the problem with this is that Gateways have to search the DHT to find the IPNS record, this is very slow. Meanwhile, the Listener has a peered connection to the Gateway which could get around this problem. So let's do that.
Using
ipfs dht get
to grab the IPNS record from the Publisher, andipfs dht put
to import it into the Listener, means the Gateway can now fetch the IPNS record over the peered connection it has with the Listener. This is significantly faster and reduces the load on the internal IPFS node of the Gateway.Beta Was this translation helpful? Give feedback.
All reactions