weed mount add options for collection and replication

This commit is contained in:
Chris Lu
2018-05-28 13:24:48 -07:00
parent d0b238d2db
commit 8ab7dd9d08
5 changed files with 22 additions and 12 deletions

View File

@@ -11,12 +11,16 @@ import (
type WFS struct {
filer string
listDirectoryEntriesCache *ccache.Cache
collection string
replication string
}
func NewSeaweedFileSystem(filer string) *WFS {
func NewSeaweedFileSystem(filer string, collection string, replication string) *WFS {
return &WFS{
filer: filer,
filer: filer,
listDirectoryEntriesCache: ccache.New(ccache.Configure().MaxSize(6000).ItemsToPrune(100)),
collection: collection,
replication: replication,
}
}