package
0.0.0-20190724090555-f1e43fe274e4
Repository: https://github.com/journeymidnight/seaweedfs.git
Documentation: pkg.go.dev
# README
- create "seaweedfs" database
export PGHOME=/Library/PostgreSQL/10 $PGHOME/bin/createdb --username=postgres --password seaweedfs
- 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) );
# Constants
No description provided by the author
# Structs
No description provided by the author