gemstone-rs 0.1.0

Safe Rust client API for GemStone/S over GCI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use gemstone_rs::{Config, Session};

fn main() -> gemstone_rs::Result<()> {
    let config = Config::from_env()?;
    let mut session = Session::login(config)?;
    let value = session.eval("3 + 4")?;

    println!("{value:?}");

    session.logout()?;
    Ok(())
}