예제 #1
0
파일: wal.go 프로젝트: bwolf/influxdb
func walEntryLength(p models.Point) int {
	return 8 + 4 + 4 + len(p.Key()) + len(p.Data())
}