embedded_redis_client 0.1.0

Automatically runs a local redis-server instance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod embedded_redis_server;
mod settings;
pub mod states;
pub mod util;

use embedded_redis_server::connection;
// use util;

pub use embedded_redis_server::EmbeddedRedisServer;
pub use settings::{
    RedisServerConnectionSettings, RedisServerSettings, RedisServerStartupSettings,
};

//NOTE: type checking on emum values is not yet possible in rust, but might become available in the future
// https://github.com/rust-lang/rfcs/pull/2593

// TODO: move to mod.rs, and rename to redis_server.rs