We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the ability for a CAR to be associated with multiple shard keys (in the context of Filecoin, deals).
mk := shard.MultiKey(key1, key2) dagst.RegisterShard(mk, mount, ...)
Also need the ability to associate an existing shard with one or many new keys:
mk := shard.MultiKey(key1, key2) dagst.LinkShard(mk, oldKey)
Also the ability to unlink shards:
mk := shard.MultiKey(key1, key2) dagst.UnlinkShard(mk, oldKey) // may implicitly destroy the shard if no more links are left
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add the ability for a CAR to be associated with multiple shard keys (in the context of Filecoin, deals).
Also need the ability to associate an existing shard with one or many new keys:
Also the ability to unlink shards:
The text was updated successfully, but these errors were encountered: