Skip to content

Commit 13ed3f3

Browse files
Merge pull request ipfs#4379 from ipfs/gx/badgerds-1.1.2
Update badgerds to 1.1.2
2 parents 3dfba22 + cf4c9bd commit 13ed3f3

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

docs/experimental-features.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,9 @@ Peers can see their (unspecific) relay address in the output of
301301
### In Version
302302
0.4.11
303303

304+
### State
305+
Experimental
306+
304307
Plugins allow to add functionality without the need to recompile the daemon.
305308

306309
### Basic Usage:
@@ -312,3 +315,30 @@ See [Plugin docs](./plugins.md)
312315
- [ ] Better support for platforms other than Linux
313316
- [ ] More plugins and plugin types
314317
- [ ] Feedback on stability
318+
319+
## Badger datastore
320+
321+
### In Version
322+
0.4.11
323+
324+
Badger-ds is new datastore implementation based on
325+
https://github.com/dgraph-io/badger
326+
327+
### Basic Usage
328+
329+
```
330+
$ ipfs init --profile=badgerds
331+
```
332+
or
333+
```
334+
[BACKUP ~/.ipfs]
335+
$ ipfs config profile apply badgerds
336+
$ ipfs-ds-convert convert
337+
```
338+
339+
###
340+
341+
### Road to being a real feature
342+
343+
- [ ] Needs more testing
344+
- [ ] Make sure there are no unknown major problems

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,9 @@
460460
},
461461
{
462462
"author": "magik6k",
463-
"hash": "QmNyEjsu9TxPRC1PqaL3JQRwAsSAGA1mu6ZtuHonvh5rju",
463+
"hash": "QmaZp8XCS3su4Mzd8DL95npF9dqkEC9rTxmSiV3YX9qQy4",
464464
"name": "go-ds-badger",
465-
"version": "1.1.1"
465+
"version": "1.1.2"
466466
},
467467
{
468468
"author": "whyrusleeping",

repo/fsrepo/datastores.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"
1717
mount "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore/syncmount"
1818

19-
badgerds "gx/ipfs/QmNyEjsu9TxPRC1PqaL3JQRwAsSAGA1mu6ZtuHonvh5rju/go-ds-badger"
2019
levelds "gx/ipfs/QmPdvXuXWAR6gtxxqZw42RtSADMwz4ijVmYHGS542b6cMz/go-ds-leveldb"
20+
badgerds "gx/ipfs/QmaZp8XCS3su4Mzd8DL95npF9dqkEC9rTxmSiV3YX9qQy4/go-ds-badger"
2121
ldbopts "gx/ipfs/QmbBhyDKsY4mbY6xsKt3qu9Y7FPvMJ6qbD8AMjYYvPRw1g/goleveldb/leveldb/opt"
2222
)
2323

0 commit comments

Comments
 (0)