Enhancement:
The ipfs dht provide CID ... command is not currently parallelized. This means that if a larger list of records to provide is given, it runs pretty slow because it has to run the provides sequentially.
A better approach here would be to batch X number of provides at a time in parallel when a list of many cids is provided, so the end user doesn't have to parallelize on their end.
This is a lower priority improvement. Workaround is to do the parallelizing upstream, or use something like gnu parallel.
Enhancement:
The
ipfs dht provide CID ...command is not currently parallelized. This means that if a larger list of records to provide is given, it runs pretty slow because it has to run the provides sequentially.A better approach here would be to batch X number of provides at a time in parallel when a list of many cids is provided, so the end user doesn't have to parallelize on their end.
This is a lower priority improvement. Workaround is to do the parallelizing upstream, or use something like gnu parallel.