-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
immutable or mutable? #3
Comments
The |
ahh so it behaves a bit like the new |
Ya, soon it will act more like the |
hey @travisperson does this fully implement https://github.com/maxogden/abstract-blob-store now? |
It does not, as you can't remove keys yet. The second PR allows for this, but it there are a few tests that are not passing completely, which I believe is due to a change in IPFS (as I'm pretty sure they were passing at some point, though maybe not). I was running |
it did -- ipfs/kubo#1446 |
ipfs/kubo#1475 <- should fix the issue |
so, this might work now? |
@jbenet @whyrusleeping it seems so, or I am missing something, but it does pass successfully all the abstract-blob-store tests |
closing this one, "it works™" :) |
@travisperson (without looking at the code on #2 yet)
is this a blob store where i can do
put(k, v)
andv = get(k)
(that is backed by a merkledag), or one where i doobj = get(ipfsPath)
?One thing i'd be looking for is a read only blob store to the ipfs dag. (maybe thats why the test suite doesn't pass? mutability?)
Maybe a mutable version can use an ipns key? something like:
I wonder if the immutable ipfs only blob store is enough for pulling things out for reginabox? cc @bengl
/me takes a look at #2
The text was updated successfully, but these errors were encountered: