Couchbase Rust Adapter / CLI
Why gauc? "gauc" is czech slang term for couch.
This project was originaly inspired by couchbase-rs
git clone https://github.com/korczis/gauc.git
$ cargo build
Compiling strsim v0.5.1
Compiling bitflags v0.7.0
Compiling ansi_term v0.9.0
Compiling vec_map v0.6.0
Compiling libc v0.2.16
Compiling unicode-segmentation v0.1.2
Compiling unicode-width v0.1.3
Compiling term_size v0.2.1
...
...
...
Compiling clap v2.14.0
Compiling gauc v0.1.0 (file:///Users/tomaskorcak/dev/microcrawler/gauc)
Finished debug [unoptimized + debuginfo] target(s) in 16.33 secs
For list of all examples see examples folder
$ cargo build --example couchbase
Finished debug [unoptimized + debuginfo] target(s) in 0.0 secs
$ cargo build --example hello_world
Compiling gauc v0.1.0 (file:///Users/tomaskorcak/dev/microcrawler/gauc)
Finished debug [unoptimized + debuginfo] target(s) in 1.7 secs
This simple example demonstrates how to use gauc
Source
``` extern crate gauc;
use gauc::client::*;
fn main() { let mut client = Client::new("couchbase://localhost/default");
// Store some data
client.store("foo", "{\"msg\": \"This is test!\"}", |response| {
println!("Created new document, CAS: {}", response.cas)
});
// Get data
client.get("foo", |response| {
if let Some(value) = response.value() {
println!("{} - {}", response.key().unwrap(), value)
}
});
} ```
Output
$ ./target/debug/examples/hello_world
Connecting to couchbase://localhost/default
Created new document, CAS: 1476374707351322624
foo - {"msg": "This is test!"}
Disconnecting from couchbase://localhost/default
``` $ ./target/debug/gauc -h Couchbase Rust Adapter / CLI 0.1.0 Tomas Korcak korczis@gmail.com
USAGE: gauc [FLAGS]
FLAGS: -h, --help Prints help information -i, --interactive Interactive mode -V, --version Prints version information -v, --verbose Verbose mode ```
Copyright 2016 Tomas Korcak korczis@gmail.com.
Licensed under the MIT License.
See LICENSE for further details.