ArangoDB support for [bb8] based on the [arangors] crate.
The library supports all authentication methods supported by arangors
,
defined by AuthenticationMethod
.
Make sure to add bb8
and bb8-arangodb
to your Cargo.toml
, like:
toml
[dependencies]
bb8 = "0.8"
bb8-arangodb = "0.1"
```rust use bb8::Pool; use bb8arangodb::{ArangoConnectionManager, AuthenticationMethod}; use futuresutil::join_all;
async fn main() { let manager = ArangoConnectionManager::new( "http://localhost:8529", AuthenticationMethod::JWTAuth("root".tostring(), "openSesame".tostring()) );
let pool = Pool::builder().max_size(5).build(manager).await.unwrap();
for _i in 0..10 {
let pool = pool.clone();
handles.push(tokio::spawn(async move {
let conn = pool.get().await.unwrap();
let db = conn.db("test").await.unwrap();
let result: Vec<String> = db
.aql_str("FOR doc IN collection RETURN doc.name")
.await
.unwrap();
println!("{:?}", results);
}))
}
join_all(handles).await;
} ```
To run tests, you'll need ArangoDB running locally. To run tests using docker, execute the following commands after cloning the repository:
```shell
docker run -d -p 8529:8529 -e ARANGOROOTPASSWORD=openSesame --name arangodb arangodb/arangodb:3.10.0
cargo test
docker stop arangodb && docker rm arangodb ```
Detailed release notes are available in this repo at [CHANGELOG.md].
Found a bug? We'd love to know about it!
Please report all issues on the GitHub issue tracker.
See the [bb8-arangodb Contributor Guide] for a complete introduction
to contributing to bb8-arangodb
.
bb8-arangodb
is primarily distributed under the terms of both the MIT license
and the Apache License (Version 2.0).
See [LICENSE-MIT] and [LICENSE-APACHE] for details.