async meta caching: can stream updates now
This commit is contained in:
@@ -14,11 +14,11 @@ type MetaCache struct {
|
||||
|
||||
func NewMetaCache(dbFolder string) *MetaCache {
|
||||
return &MetaCache{
|
||||
FilerStore: OpenMetaStore(dbFolder),
|
||||
FilerStore: openMetaStore(dbFolder),
|
||||
}
|
||||
}
|
||||
|
||||
func OpenMetaStore(dbFolder string) filer2.FilerStore {
|
||||
func openMetaStore(dbFolder string) filer2.FilerStore {
|
||||
|
||||
os.MkdirAll(dbFolder, 0755)
|
||||
|
||||
@@ -31,4 +31,4 @@ func OpenMetaStore(dbFolder string) filer2.FilerStore {
|
||||
|
||||
return store
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user