-
Notifications
You must be signed in to change notification settings - Fork 73
[HZ-5291] Asyncio Client API Docs #764
New issue
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
base: master
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #764 +/- ##
==========================================
- Coverage 94.60% 94.60% -0.01%
==========================================
Files 393 393
Lines 25056 25056
==========================================
- Hits 23704 23703 -1
- Misses 1352 1353 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
amandalindsay
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some minor comments and suggestions so approving in advance
| Returns silently if there is no such listener added before. | ||
| Args: | ||
| registration_id: The id of registered listener. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| registration_id: The id of registered listener. | |
| registration_id: The id of the registered listener. |
| does not contain this key. | ||
| Warning: | ||
| This method returns a clone of original Document, modifying the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| This method returns a clone of original Document, modifying the | |
| This method returns a clone of the original Document. Modifying the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Document' sometimes appears with an initial capital, sometimes without. For consistency, suggest we settle on one, preferably 'document' unless there's a reason it needs to be treated as a proper noun
| Warning: | ||
| This method returns a clone of original Document, modifying the | ||
| returned Document does not change the actual Document in the VectorCollection. One |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| returned Document does not change the actual Document in the VectorCollection. One | |
| returned Document does not change the actual Document in the VectorCollection. Put |
| Warning: | ||
| This method returns a clone of original Document, modifying the | ||
| returned Document does not change the actual Document in the VectorCollection. One | ||
| should put modified Document back to make changes visible to all nodes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| should put modified Document back to make changes visible to all nodes. | |
| the modified Document back to make changes visible to all nodes. |
| Warning: | ||
| This method uses ``__hash__`` and ``__eq__`` methods of binary form | ||
| of the key, not the actual implementations of ``__hash__`` and | ||
| ``__eq__`` defined in key's class. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ``__eq__`` defined in key's class. | |
| ``__eq__`` defined in the key's class. |
| Warning: | ||
| This method uses ``__hash__`` and ``__eq__`` methods of binary form | ||
| of the key, not the actual implementations of ``__hash__`` and | ||
| ``__eq__`` defined in key's class. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ``__eq__`` defined in key's class. | |
| ``__eq__`` defined in the key's class. |
| ) -> List[SearchResult]: | ||
| """Returns the Documents closest to the given vector. | ||
| The search is performed using distance metric set when |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| The search is performed using distance metric set when | |
| The search is performed using the distance metric set when |
| Warning: | ||
| This method uses ``__hash__`` and ``__eq__`` methods of binary form | ||
| of the key, not the actual implementations of ``__hash__`` and | ||
| ``__eq__`` defined in key's class. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ``__eq__`` defined in key's class. | |
| ``__eq__`` defined in the key's class. |
| Returns: | ||
| The Document associated with key, or ``None`` if there was | ||
| no mapping for key. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| no mapping for key. | |
| no mapping for the key. |
| to the advertised degree, and updating the entry node as necessary. | ||
| Warning: | ||
| This operation can take long time to execute and consume a lot of server resources. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| This operation can take long time to execute and consume a lot of server resources. | |
| This operation can take a long time to execute and consume a lot of server resources. |
No description provided.