This library is the official client for the free and open-source NoSQL database Skytable. First, go ahead and install Skytable by following the instructions here. This library supports all Skytable versions that work with the Terrapipe 1.0 Protocol. This version of the library was tested with the latest Skytable release (release 0.5.1).
This library only ships with the bare minimum that is required for interacting with Skytable. Once you have Skytable installed and running, you're ready to follow this guide!
We'll start by creating a new binary application and then running actions. Create a new binary application
by running:
shell
cargo new skyapp
Tip: You can see a full list of the available actions here.
First add this to your Cargo.toml
file:
toml
skytable = "0.1.0"
Now open up your src/main.rs
file and establish a connection to the server:
no_run
use skytable::{Connection};
async fn main() {
let mut con = Connection::new("127.0.0.1", 2003).await.unwrap();
}
We get an error stating that main()
cannot be async
! Now [Connection
] itself is an async
connection
and hence needs to await
. This is when you'll need a runtime like Tokio. The Skytable
database itself uses Tokio as its asynchronous runtime! So let's add tokio
to our Cargo.toml
and also add
the #[tokio::main]
macro on top of our main function:
In Cargo.toml
, add:
toml
tokio = {version="1.5.0", features=["full"]}
And your main.rs
should now look like:
```no_run
use skytable::{Connection, Query, Response, RespCode, DataType};
async fn main() -> std::io::Result<()> { let mut con = Connection::new("127.0.0.1", 2003).await?; } ```
Now let's run a [Query
]! Add this below the previous line:
no_run
let mut query = Query::new();
query.arg("heya");
let res = con.run_simple_query(query).await?;
assert_eq!(res, Response::Item(DataType::Str("HEY!".to_owned())));
Way to go — you're all set! Now go ahead and run more advanced queries!
Open-source, and contributions ... — they're always welcome! For ideas and suggestions, create an issue on GitHub and for patches, fork and open those pull requests here!
This client library is distributed under the permissive Apache-2.0 License. Now go build great apps!