1
0
mirror of https://github.com/taigrr/bitcask synced 2025-01-18 04:03:17 -08:00
bitcask/proto/entry.proto
2019-03-12 23:56:57 +10:00

12 lines
146 B
Protocol Buffer

syntax = "proto3";
package proto;
message Entry {
uint32 CRC = 1;
string Key = 2;
int64 Index = 3;
bytes Value = 4;
int64 Timestamp = 5;
}