mirror of
https://github.com/gogrlx/bitcask.git
synced 2026-04-02 02:58:59 -07:00
12 lines
146 B
Protocol Buffer
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;
|
|
}
|