Rust client for [sonic] search backend.
We recommend you start with the [documentation].
Add sonic-channel = { version = "0.2" }
as a dependency in Cargo.toml
.
Cargo.toml
example:
```toml [package] name = "my-crate" version = "0.2.0" authors = ["Me user@rust-lang.org"]
[dependencies] sonic-channel = { version = "0.2" } ```
Note: This example requires enabling the search
feature, enabled by default.
```rust use sonic_channel::*;
fn main() -> result::Result<()> { let channel = SonicChannel::connectwithstart( ChannelMode::Search, "localhost:1491", "SecretPassword", )?;
let objects = channel.query("collection", "bucket", "recipe")?;
dbg!(objects);
Ok(())
} ```
Note: This example requires enabling the ingest
feature.
```rust use sonic_channel::*;
fn main() -> result::Result<()> { let mut channel = SonicChannel::connectwithstart( ChannelMode::Ingest, "localhost:1491", "SecretPassword", )?;
let pushed = channel.push("collection", "bucket", "object:1", "my best recipe")?;
// or
// let pushed = channel.push_with_locale("collection", "bucket", "object:1", "Мой лучший рецепт", "rus")?;
dbg!(pushed);
Ok(())
} ```