wheat-cache/pkg/structure/define.go

15 lines
185 B
Go

package structure
const (
defaultLen = 8 // 默认创建的 value 大小
)
type DynamicType int8
const (
DynamicNull = DynamicType(iota)
DynamicInt
DynamicFloat
DynamicString
)