package
0.0.0-20240815220557-45e1a9afd490
Repository: https://github.com/gateway-dao/seaweedfs.git
Documentation: pkg.go.dev

# README

  1. create "seaweedfs" database

export PGHOME=/Library/PostgreSQL/10 $PGHOME/bin/createdb --username=postgres --password seaweedfs

  1. create "filemeta" table $PGHOME/bin/psql --username=postgres --password seaweedfs

CREATE TABLE IF NOT EXISTS filemeta ( dirhash BIGINT, name VARCHAR(65535), directory VARCHAR(65535), meta bytea, PRIMARY KEY (dirhash, name) );

# Structs

No description provided by the author
No description provided by the author