示例#1
0
文件: wal.go 项目: bwolf/influxdb
func walEntryLength(p models.Point) int {
	return 8 + 4 + 4 + len(p.Key()) + len(p.Data())
}