actori-redis

Crates.ioactori-redis
lib.rsactori-redis
version0.8.0
sourcesrc
created_at2020-01-20 03:19:48.269421
updated_at2020-01-20 03:19:48.269421
descriptionRedis integration for actori framework
homepagehttps://github.com/actori/actori-redis
repositoryhttps://github.com/actori/actori-redis.git
max_upload_size
id200340
size150,369
Christian Haynes (06chaynes)

documentation

https://docs.rs/actori-redis/

README

Actori redis Build Status codecov crates.io

Redis integration for actori framework.

Documentation

Redis session backend

Use redis as session storage.

You need to pass an address of the redis server and random value to the constructor of RedisSessionBackend. This is private key for cookie session, When this value is changed, all session data is lost.

Note that whatever you write into your session is visible by the user (but not modifiable).

Constructor panics if key length is less than 32 bytes.

use actori_web::{App, HttpServer, web, middleware};
use actori_web::middleware::session::SessionStorage;
use actori_redis::RedisSessionBackend;

#[actori_rt::main]
async fn main() -> std::io::Result {
    HttpServer::new(|| App::new()
        // enable logger
        .middleware(middleware::Logger::default())
        // cookie session middleware
        .middleware(SessionStorage::new(
            RedisSessionBackend::new("127.0.0.1:6379", &[0; 32])
        ))
        // register simple route, handle all methods
        .service(web::resource("/").to(index))
    )
    .bind("0.0.0.0:8080")?
    .start()
    .await
}

License

This project is licensed under either of

at your option.

Code of Conduct

Contribution to the actori-redis crate is organized under the terms of the Contributor Covenant, the maintainer of actori-redis, @fafhrd91, promises to intervene to uphold that code of conduct.

Commit count: 100

cargo fmt