Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( UserTableKeyPrefix = []byte("data") SecondaryTableKeyPrefix = []byte("idx") SearchTableKeyPrefix = []byte("sea") PartitionKeyPrefix = []byte("part") CacheKeyPrefix = "cache" )
View Source
var EmptyData = &TableData{}
Functions ¶
func Encode ¶
Encode is used to encode data to the raw bytes which is used to store in storage as value. The first byte is storing the type corresponding to this Data. This is important and used by the decoder later to decode back.
func EncodeCacheData ¶
func EncodeStreamData ¶
Types ¶
type DataType ¶
type DataType byte
DataType is to define the different data types for the data stored in the storage engine.
type UserDataEncType ¶
type UserDataEncType int8
const ( MsgpackEncoding UserDataEncType = 1 JsonEncoding UserDataEncType = 2 )
Click to show internal directories.
Click to hide internal directories.