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
With the `uid`, you can check the status (`enqueued`, `processing`, `succeeded` or `failed`) of your documents addition using the [task](https://docs.meilisearch.com/reference/api/tasks.html#get-task).
Note that Meilisearch will rebuild your index whenever you update `filterableAttributes`. Depending on the size of your dataset, this might take time. You can track the process using the [tasks](https://docs.meilisearch.com/reference/api/tasks.html#get-task)).
Copy file name to clipboardExpand all lines: src/lib.rs
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,8 @@
44
44
//! })}
45
45
//! ```
46
46
//!
47
+
//! With the `uid`, you can check the status (`enqueued`, `processing`, `succeeded` or `failed`) of your documents addition using the [task](https://docs.meilisearch.com/reference/api/tasks.html#get-task).
48
+
//!
47
49
//! ### Basic Search <!-- omit in TOC -->
48
50
//!
49
51
//! ```rust
@@ -168,10 +170,7 @@
168
170
//!
169
171
//! You only need to perform this operation once.
170
172
//!
171
-
//! Note that Meilisearch will rebuild your index whenever you update `filterableAttributes`.
172
-
//! Depending on the size of your dataset, this might take time. You can track the whole process
//! Note that Meilisearch will rebuild your index whenever you update `filterableAttributes`. Depending on the size of your dataset, this might take time. You can track the process using the [tasks](https://docs.meilisearch.com/reference/api/tasks.html#get-task)).
0 commit comments