mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
* include pebble as built-in plugin Pebble provides a high-performance alternative to leveldb as the datastore, and will serve as a replacement for badger1. There are a number of tuning parameters available for tuning pebble's performance to your specific needs. Default values are used for any that are not configured or are set to the parameter's zero-value. Requires https://github.com/ipfs/go-ds-pebble/pull/39 Closes #10347 * docs: remove mention of ipfs-ds-convert. Rationale: https://github.com/ipfs/ipfs-ds-convert/issues/50 * docs: pebbleds profile * test: meaningful t0025-datastores.sh * Update config/init.go * Update docs/config.md * Do not hard-code zero values into pebble config
16 lines
652 B
Plaintext
16 lines
652 B
Plaintext
# this file contains plugins to be preloaded
|
|
# empty lines or starting with '#' are ignored
|
|
#
|
|
# name go-path number of the sub-plugin or *
|
|
|
|
ipldgit github.com/ipfs/kubo/plugin/plugins/git *
|
|
iplddagjose github.com/ipfs/kubo/plugin/plugins/dagjose *
|
|
|
|
badgerds github.com/ipfs/kubo/plugin/plugins/badgerds *
|
|
flatfs github.com/ipfs/kubo/plugin/plugins/flatfs *
|
|
levelds github.com/ipfs/kubo/plugin/plugins/levelds *
|
|
pebbleds github.com/ipfs/kubo/plugin/plugins/pebbleds *
|
|
peerlog github.com/ipfs/kubo/plugin/plugins/peerlog *
|
|
fxtest github.com/ipfs/kubo/plugin/plugins/fxtest *
|
|
nopfs github.com/ipfs/kubo/plugin/plugins/nopfs *
|