You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
564 B
13 lines
564 B
/*
|
|
Package foundationdb provides a FoundationDB-based filer store for SeaweedFS.
|
|
|
|
FoundationDB is a distributed ACID database with strong consistency guarantees
|
|
and excellent scalability characteristics. This filer store leverages FDB's
|
|
directory layer for organizing file metadata and its key-value interface for
|
|
efficient storage and retrieval.
|
|
|
|
The referenced "github.com/apple/foundationdb/bindings/go/src/fdb" library
|
|
requires FoundationDB client libraries to be installed.
|
|
So this is only compiled with "go build -tags foundationdb".
|
|
*/
|
|
package foundationdb
|