wheat-cache/pkg/structure/define.go

15 lines
185 B
Go
Raw Normal View History

package structure
2021-09-24 22:48:08 +08:00
const (
2021-09-25 16:21:28 +08:00
defaultLen = 8 // 默认创建的 value 大小
2021-09-24 22:48:08 +08:00
)
2021-09-19 11:53:17 +08:00
2021-09-24 22:48:08 +08:00
type DynamicType int8
const (
DynamicNull = DynamicType(iota)
DynamicInt
DynamicFloat
DynamicString
)