mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
f8d9bc919d
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
33 lines
583 B
Protocol Buffer
33 lines
583 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.indexcgo;
|
|
option go_package="github.com/milvus-io/milvus/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 MapParamsV2 {
|
|
map<string, string> params = 1;
|
|
}
|
|
|
|
message Binary {
|
|
string key = 1;
|
|
bytes value = 2;
|
|
}
|
|
|
|
message BinarySet {
|
|
repeated Binary datas = 1;
|
|
}
|