2022-02-14 09:09:31 +00:00
|
|
|
package meta_cache
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
import "github.com/seaweedfs/seaweedfs/weed/util"
|
2022-02-14 09:09:31 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
_ = util.Configuration(&cacheConfig{})
|
|
|
|
)
|
|
|
|
|
2022-09-15 09:04:57 +00:00
|
|
|
// implementing util.Configuration
|
2022-02-14 09:09:31 +00:00
|
|
|
type cacheConfig struct {
|
|
|
|
dir string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c cacheConfig) GetString(key string) string {
|
|
|
|
return c.dir
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c cacheConfig) GetBool(key string) bool {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c cacheConfig) GetInt(key string) int {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c cacheConfig) GetStringSlice(key string) []string {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c cacheConfig) SetDefault(key string, value interface{}) {
|
|
|
|
panic("implement me")
|
|
|
|
}
|