Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在云中运行一个 IPFS 集群,我想从网络中固定大约 100k 个对象的哈希值。
我目前正在使用 迭代列表ipfs pin add <hash>,但它需要很长时间(因为无法立即找到某些哈希或需要很长时间才能找到)
ipfs pin add <hash>
有没有办法请求 IPFS 节点/集群pin add批量散列?尽最大努力的方法就足够了,因为我知道一些哈希可能已经消失或无法再访问。
pin add
有没有办法快速实现这一目标?
您可以将文件列表流式传输到ipfs pin addSTDIN。这/path/to/hashes是一个文件,每行都有一个 IPFS 哈希:
ipfs pin add
/path/to/hashes
ipfs pin add < /path/to/hashes
您还可以传递--progress标志以查看当前的固定进度。
--progress