mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
0301504184
1. add mime type to file in filer 2. purge old chunks if overwrite during insert
19 lines
472 B
Go
19 lines
472 B
Go
package filer2
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
type FilerStore interface {
|
|
GetName() string
|
|
Initialize(viper *viper.Viper) error
|
|
InsertEntry(*Entry) error
|
|
UpdateEntry(*Entry) (err error)
|
|
FindEntry(FullPath) (entry *Entry, err error)
|
|
DeleteEntry(FullPath) (err error)
|
|
ListDirectoryEntries(dirPath FullPath, startFileName string, inclusive bool, limit int) ([]*Entry, error)
|
|
}
|
|
|
|
var ErrNotFound = errors.New("filer: no entry is found in filer store")
|