You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add benchmark reference to feature summary (#510)
* docs: add benchmark reference to feature summary
add link to the benchmark so that users can quickly choose the right database storage to use
Co-authored-by: AlaeddineAbdessalem <alaeddine-13@live.fr>
Copy file name to clipboardExpand all lines: docs/advanced/document-store/index.md
+15-12Lines changed: 15 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,15 +151,19 @@ Using dataclass gives you better type-checking in IDE but requires an extra impo
151
151
DocArray supports multiple storage backends with different search features. The following table showcases relevant functionalities that are supported (✅) or not supported (❌) in DocArray depending on the backend:
152
152
153
153
154
-
| Name | Construction | vector search | vector search + filter | filter|
The right backend choice depends on the scale of your data, the required performance and the desired ease of setup. For most use cases we recommend starting with [`AnnLite`](./annlite.md).
165
+
[**Check our One Million Scale Benchmark for more details**](./benchmark#conclusion).
166
+
163
167
164
168
165
169
Here we understand by
@@ -170,10 +174,9 @@ Here we understand by
170
174
171
175
-**filter**: perform a filter step over the data. The input of the search function is a filter.
172
176
173
-
The capabilities of **vector search**, **vector search + filter** can be used using the {meth}`~docarray.array.mixins.find.FindMixin.find` or {func}`~docarray.array.mixins.match.MatchMixin.match` methods thorugh a `DocumentArray`.
177
+
The capabilities of **vector search**, **vector search + filter** can be used using the {meth}`~docarray.array.mixins.find.FindMixin.find` or {func}`~docarray.array.mixins.match.MatchMixin.match` methods through a `DocumentArray`.
174
178
The **filter** functionality is available using the `.find` method in a `DocumentArray`.
175
-
A detailed explanation of the differences between `.find` and `.match` can be found [`here`](./../../../fundamentals/documentarray/matching)
176
-
179
+
A detailed explanation of the differences between `.find` and `.match` can be found [here](./../../../fundamentals/documentarray/matching)
0 commit comments