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

4 years ago
  1. syntax = "proto3";
  2. package bptree;
  3. option go_package = "github.com/chrislusf/seaweedfs/weed/util/bptree";
  4. message ProtoNode {
  5. repeated bytes keys = 1;
  6. repeated bytes values = 2;
  7. repeated int64 pointers = 3;
  8. int64 next = 4;
  9. int64 prev = 5;
  10. int64 id = 6;
  11. }