fix:修复旧版本没有标识文档读写缓存失败的BUG

This commit is contained in:
lifei6671
2018-08-13 15:04:52 +08:00
parent b50d39f690
commit c7251697b3
7 changed files with 60 additions and 44 deletions

2
cache/cache_null.go vendored
View File

@@ -7,7 +7,7 @@ type NullCache struct {
}
func (bm *NullCache)Get(key string) interface{} {
func (bm *NullCache) Get(key string) interface{} {
return nil
}