增加表关联新建功能,同时修复数据库bug

This commit is contained in:
2021-08-29 06:08:19 +08:00
parent b480659a22
commit e1f4876621
6 changed files with 26 additions and 9 deletions
+2 -1
View File
@@ -95,7 +95,8 @@ func (this *CacheMemory) delete(key string) {
key = Substr(key, 0, del)
for k, _ := range this.Map {
if strings.Index(k, key) != -1 {
delete(this.Map, key)
delete(this.Map, k)
}
}