You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The doInit function (used by ipfs init) is not exported and right now the closest functionality to that is the exported fsrepo.Init but that requires taking care of the config.Config structure (and other maintenance issues taken care of by doInit).
My use case is doing benchmark tests between flatfs and badger datastores where I create a repo from scratch to measure put/get times. For me the easiest procedure at the moment is calling the ipfs init shell command directly (with exec.Command) instead of using the internal API.
The text was updated successfully, but these errors were encountered:
The
doInit
function (used byipfs init
) is not exported and right now the closest functionality to that is the exportedfsrepo.Init
but that requires taking care of theconfig.Config
structure (and other maintenance issues taken care of bydoInit
).My use case is doing benchmark tests between
flatfs
andbadger
datastores where I create a repo from scratch to measure put/get times. For me the easiest procedure at the moment is calling theipfs init
shell command directly (withexec.Command
) instead of using the internal API.The text was updated successfully, but these errors were encountered: