mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
15 lines
270 B
Protocol Buffer
15 lines
270 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package bptree;
|
||
|
|
||
|
option go_package = "github.com/chrislusf/seaweedfs/weed/util/bptree";
|
||
|
|
||
|
message ProtoNode {
|
||
|
repeated bytes keys = 1;
|
||
|
repeated bytes values = 2;
|
||
|
repeated int64 pointers = 3;
|
||
|
int64 next = 4;
|
||
|
int64 prev = 5;
|
||
|
int64 id = 6;
|
||
|
}
|