1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 01:12:24 +08:00

Merge pull request #4379 from ipfs/gx/badgerds-1.1.2

Update badgerds to 1.1.2
This commit is contained in:
Whyrusleeping
2017-11-10 16:16:52 -05:00
committed by GitHub
3 changed files with 33 additions and 3 deletions

View File

@ -301,6 +301,9 @@ Peers can see their (unspecific) relay address in the output of
### In Version ### In Version
0.4.11 0.4.11
### State
Experimental
Plugins allow to add functionality without the need to recompile the daemon. Plugins allow to add functionality without the need to recompile the daemon.
### Basic Usage: ### Basic Usage:
@ -312,3 +315,30 @@ See [Plugin docs](./plugins.md)
- [ ] Better support for platforms other than Linux - [ ] Better support for platforms other than Linux
- [ ] More plugins and plugin types - [ ] More plugins and plugin types
- [ ] Feedback on stability - [ ] Feedback on stability
## Badger datastore
### In Version
0.4.11
Badger-ds is new datastore implementation based on
https://github.com/dgraph-io/badger
### Basic Usage
```
$ ipfs init --profile=badgerds
```
or
```
[BACKUP ~/.ipfs]
$ ipfs config profile apply badgerds
$ ipfs-ds-convert convert
```
###
### Road to being a real feature
- [ ] Needs more testing
- [ ] Make sure there are no unknown major problems

View File

@ -460,9 +460,9 @@
}, },
{ {
"author": "magik6k", "author": "magik6k",
"hash": "QmNyEjsu9TxPRC1PqaL3JQRwAsSAGA1mu6ZtuHonvh5rju", "hash": "QmaZp8XCS3su4Mzd8DL95npF9dqkEC9rTxmSiV3YX9qQy4",
"name": "go-ds-badger", "name": "go-ds-badger",
"version": "1.1.1" "version": "1.1.2"
}, },
{ {
"author": "whyrusleeping", "author": "whyrusleeping",

View File

@ -16,8 +16,8 @@ import (
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore" ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"
mount "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore/syncmount" mount "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore/syncmount"
badgerds "gx/ipfs/QmNyEjsu9TxPRC1PqaL3JQRwAsSAGA1mu6ZtuHonvh5rju/go-ds-badger"
levelds "gx/ipfs/QmPdvXuXWAR6gtxxqZw42RtSADMwz4ijVmYHGS542b6cMz/go-ds-leveldb" levelds "gx/ipfs/QmPdvXuXWAR6gtxxqZw42RtSADMwz4ijVmYHGS542b6cMz/go-ds-leveldb"
badgerds "gx/ipfs/QmaZp8XCS3su4Mzd8DL95npF9dqkEC9rTxmSiV3YX9qQy4/go-ds-badger"
ldbopts "gx/ipfs/QmbBhyDKsY4mbY6xsKt3qu9Y7FPvMJ6qbD8AMjYYvPRw1g/goleveldb/leveldb/opt" ldbopts "gx/ipfs/QmbBhyDKsY4mbY6xsKt3qu9Y7FPvMJ6qbD8AMjYYvPRw1g/goleveldb/leveldb/opt"
) )