gitee.com/quant1x/engine@v1.8.4/cache/data_action.go (about) 1 package cache 2 3 const ( 4 UseGoroutine = false // 更新和修复数据是否启用协程 5 ) 6 7 type OpKind int 8 9 const ( 10 OpUpdate OpKind = iota + 1 // 更新 11 OpRepair // 修复 12 OpIncr // 增量 13 )