mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
03b5d32569
Signed-off-by: XuanYang-cn <xuan.yang@zilliz.com>
29 lines
537 B
Protocol Buffer
29 lines
537 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;
|
|
}
|
|
|
|
// TypeParams & IndexParams will be replaced by MapParams later
|
|
message MapParams {
|
|
repeated common.KeyValuePair params = 1;
|
|
}
|
|
|
|
message Binary {
|
|
string key = 1;
|
|
bytes value = 2;
|
|
}
|
|
|
|
message BinarySet {
|
|
repeated Binary datas = 1;
|
|
}
|