milvus/internal/proto/index_cgo_msg.proto
dragondriver d023c1afba Refactor index wrapper, use protobuf instead of json to pass data
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
2020-12-21 16:36:07 +08:00

24 lines
407 B
Protocol Buffer

syntax = "proto3";
package milvus.proto.indexcgo;
option go_package="github.com/zilliztech/milvus-distributed/internal/proto/indexcgopb";
import "common.proto";
message TypeParams {
repeated common.KeyValuePair params = 1;
}
message IndexParams {
repeated common.KeyValuePair params = 1;
}
message Binary {
string key = 1;
bytes value = 2;
}
message BinarySet {
repeated Binary datas = 1;
}