memcached-async 0.0.1

Asynchronous memcached protocol parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Async memcached protocol framework (ASCII/meta/binary).

mod codec;
mod context;
mod error;
pub mod extract;
mod response;
mod router;
mod server;
mod types;

pub use codec::{AsciiDecoder, BinaryDecoder};
pub use context::{ClientId, ConnectionInfo, Extensions, RequestContext};
pub use error::{Error, ErrorKind, Result};
pub use response::*;
pub use router::{FromRequest, Handler, IntoHandler, Router};
pub use server::{Server, ServerBuilder, ServerConfig};
pub use types::*;