diff --git a/internal/util/paramtable/base_table.go b/internal/util/paramtable/base_table.go index aa934cb8f0a256726d15766593a725a94c6b091f..7330278463b48fae4d68882467ce76846538c701 100644 --- a/internal/util/paramtable/base_table.go +++ b/internal/util/paramtable/base_table.go @@ -36,6 +36,8 @@ type UniqueID = typeutil.UniqueID const envPrefix string = "milvus" +// Base abstracts BaseTable +// TODO: it's never used, consider to substitute BaseTable or to remove it type Base interface { Load(key string) (string, error) LoadRange(key, endKey string, limit int) ([]string, []string, error) @@ -45,6 +47,7 @@ type Base interface { Init() } +// BaseTable the basics of paramtable type BaseTable struct { params *memkv.MemoryKV configDir string