1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
Go to file
2018-02-15 16:53:05 -08:00
examples better connection handling 2018-01-22 00:53:46 -08:00
src use latest actix api 2018-02-15 16:53:05 -08:00
tests use latest actix api 2018-02-15 16:53:05 -08:00
.gitignore initial import 2017-12-28 21:14:04 -08:00
.travis.yml add doc links 2018-01-22 23:13:18 -08:00
Cargo.toml use latest actix api 2018-02-15 16:53:05 -08:00
CHANGES.md prepare release 2018-01-23 10:06:43 -08:00
LICENSE-APACHE initial import 2017-12-28 21:14:04 -08:00
LICENSE-MIT initial import 2017-12-28 21:14:04 -08:00
README.md fix crate link 2018-01-22 23:17:37 -08:00

Actix redis Build Status codecov crates.io

Redis integration for actix 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.

extern crate actix_web;
extern crate actix_redis;

use actix_web::*;
use actix_web::middleware::SessionStorage;
use actix_redis::RedisSessionBackend;

fn main() {
    ::std::env::set_var("RUST_LOG", "actix_web=info");
    let _ = env_logger::init();
    let sys = actix::System::new("basic-example");

    HttpServer::new(
        || Application::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
            .resource("/", |r| r.f(index)))
        .bind("0.0.0.0:8080").unwrap()
        .start();

    let _ = sys.run();
}

License

This project is licensed under either of

at your option.

Code of Conduct

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