func EncodeBinary(buf *bytes2.ChunkedWriter, key string, val []byte) { EncodePrefix(buf, Binary, key) putUint32(buf, uint32(len(val))) buf.WriteByte(0) buf.Write(val) }