Implement QueryWithIterator/SearchWithIterator#115
Implement QueryWithIterator/SearchWithIterator#115verdie-g wants to merge 4 commits intomilvus-io:mainfrom
Conversation
|
@verdie-g |
|
@yhmo there are few points I'm not sure about. For example, is the offset parameter a server-side parameter or it's a client-side hack? So it's ready to be reviewed. The conflicts should be easy to solve. |
SearchIterator doesn't support "offset" parameter. There is a seek() method to handle offset parameter: There is a limitation in milvus, query() interface returns no more than 16384 entities to client. Results of query() are ordered by primary keys. It is much like a client-side hack. |
Closes #79