1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
Go to file
Nikolay Kim 8f6a00324e
Merge pull request #37 from pandaman64/patch-1
bump actix-web version
2019-12-26 11:18:39 +04:00
examples bump actix-web version 2019-12-26 15:47:31 +09:00
src bump actix-web version 2019-12-26 15:47:31 +09:00
tests migrate to actix 0.9 2019-12-15 23:46:03 +06:00
.gitignore updated session logic to support login and logout functionality 2019-06-12 08:14:18 -04:00
.travis.yml remove rust 1.26 2019-03-30 09:44:18 -07:00
Cargo.toml bump actix-web version 2019-12-26 15:47:31 +09:00
CHANGES.md update actix; prep release 2019-12-20 22:09:08 +06: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 update readme 2019-12-20 22:11:38 +06:00
rustfmt.toml update actix and actix-web 2019-03-29 11:31:48 -07: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.

use actix_web::{App, HttpServer, web, middleware};
use actix_web::middleware::session::SessionStorage;
use actix_redis::RedisSessionBackend;

#[actix_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 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.