milvus-sdk-cpp
milvus-sdk-cpp copied to clipboard
C++ SDK for Milvus 2.0
Milvus Server currently is written in Python, Any plans on porting it to C++ for complete solution being available in C++ (Client & Server). Please let know if this is...
I installed milvus successfully and ran the simple example. but I want to use milvus from another directory. I tried this to build the program: ``` g++ main.cpp -I /usr/local/include...
Added the GPU index types as metioned in Issue #257
Verifying the available IndexTypes, I noticed that there is no `milvus::IndexType::GPU_IVF_FLAT`. In pymilvus I can specify a string literal to create such index. Is it possible to create GPU Indexes...
I have a Collection whose schema has an INT64 id field named template_id and a FLOAT VECTOR field named template_data When I use `milvus::client::DescribeIndex(collection_name, "template_data", index_desc)` it retrieves the `IndexDesc`...
[ThirdPartyPackages](https://github.com/milvus-io/milvus-sdk-cpp/blob/master/cmake/ThirdPartyPackages.cmake#L48C8-L48C24) ``` if ("${MILVUS_WITH_GRPC}" STREQUAL "pakcage") find_package(grpc REQUIRED) else () ```
如图: uname -a如下 5.15.0-1035-raspi #38-Ubuntu SMP PREEMPT aarch64 aarch64 aarch64 GNU/Linux
Hi, I have installed Milvus C++ sdk on my machine. But when I compile my project, it shows undefined reference to 'grpc::xxx‘ or undefined reference to 'google::protobuf::xx' even though I...
``` // https://wiki.lfaidata.foundation/display/MIL/MEP+29+--+Support+Role-Based+Access+Control rpc CreateRole(CreateRoleRequest) returns (common.Status) {} rpc DropRole(DropRoleRequest) returns (common.Status) {} rpc OperateUserRole(OperateUserRoleRequest) returns (common.Status) {} rpc SelectRole(SelectRoleRequest) returns (SelectRoleResponse) {} rpc SelectUser(SelectUserRequest) returns (SelectUserResponse) {} rpc OperatePrivilege(OperatePrivilegeRequest)...