You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
270 B

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;
}