meilisearch-rust
meilisearch-rust copied to clipboard
Rust wrapper for the Meilisearch API.
**Description** SDK fails to parse Meilisearch success response **Expected behavior** No error **Current behavior** ERROR meilisearch_sdk::request] Request succeeded but failed to parse response Error object: `ParseError(Error("missing field `uid`", line: 0,...
**Description** After updating `meilisearch` to 0.28.0 I get the following error: missing field `nbHits`. (I have already updated the Rust SDK). **Expected behavior** As before the update, the search function...
# Pull Request ## What does this PR do? Fixes ##296 It's pretty straightforward! Considered passing an Option but it seemed cleaner to leave the signature of both affected functions...
This PR addresses #265. The main obstacle I see is that `serde_json` does not offer a way to serialize data to jsonlines. For example, vectors are automatically serialized to json...
**Description** All the functions that create or update documents should send jsonlines instead of a JSON array. **Why** That's faster to process by meilisearch and consumes less memory. **How** Currently,...
**Description** Currently the method to update an index requires a primary key as per the method definition: ```rust pub async fn update(&self, primary_key: impl AsRef) -> Result ``` As an...
We should add `cargo fmt` to the CI once meilisearch/meilisearch-rust#289 is merged
Updates the requirements on [yew](https://github.com/yewstack/yew) to permit the latest version. Release notes Sourced from yew's releases. yew-v0.19.3 Changelog 🛠 Fixes Attempt to fix recursion on display. [@mibes, #2149] Fix default...
Macros are a wonderful feature of the Rust language that could help us for 2 things : ## Add an abstraction over the Document trait We currently use a `Document`...
**Description** The following is a flacky test: https://github.com/meilisearch/meilisearch-rust/blob/09f9eb5baac017b1b0a820c4646dd671ac883de3/src/client.rs#L944-L947 See the following github-action: https://github.com/meilisearch/meilisearch-rust/runs/6306804797?check_suite_focus=true Not sure when it was introduced **Expected behavior** Always succeed **Current behavior** Regularely fail. Any idea @irevoire...