We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1、c++接口中只有createTable,没有删除表的操作,请问应该如何删除表格? 2、GetDocByID,GetDocByDocID这两个接口中ID是一个string,但是实际内部是一个int,docID和id有什么区别呢?而且以id=1进行调用时 string docid = "1"; GetDocByID(opt.engine, docid.c_str(), docid.size(), &doc_str, &doc_str_len); 却没有查询到任何doc 3、当索引类型设置为倒排乘积量化,把index_size设为1000时,当表中完全写入10000条数据后,进行查询时每次都是返回-2错误码,显示索引没有训练,当强制搜索时,也经常搜索不到任何结果
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1、c++接口中只有createTable,没有删除表的操作,请问应该如何删除表格?
2、GetDocByID,GetDocByDocID这两个接口中ID是一个string,但是实际内部是一个int,docID和id有什么区别呢?而且以id=1进行调用时
string docid = "1";
GetDocByID(opt.engine, docid.c_str(), docid.size(), &doc_str, &doc_str_len);
却没有查询到任何doc
3、当索引类型设置为倒排乘积量化,把index_size设为1000时,当表中完全写入10000条数据后,进行查询时每次都是返回-2错误码,显示索引没有训练,当强制搜索时,也经常搜索不到任何结果
The text was updated successfully, but these errors were encountered: