Struct actix_redis::RedisSession
source · [−]pub struct RedisSession(_);
Expand description
Use redis as session storage.
You need to pass an address of the redis server and random value to the
constructor of RedisSession
. This is private key for cookie
session, When this value is changed, all session data is lost.
Constructor panics if key length is less than 32 bytes.
Implementations
Create new redis session backend
addr
- address of the redis server
Set custom cookie name for session ID.
Set custom cookie path.
Set custom cookie domain.
Set custom cookie secure.
If the secure
field is set, a cookie will only be transmitted when the
connection is secure - i.e. https
.
Default is false.
Set custom cookie max-age.
Use None
for session-only cookies.
Set custom cookie SameSite
attribute.
By default, the attribute is omitted.
Set custom cookie HttpOnly
policy.
Default is true.
Trait Implementations
impl<S, B> Transform<S, ServiceRequest> for RedisSession where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
impl<S, B> Transform<S, ServiceRequest> for RedisSession where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
S::Future: 'static,
B: 'static,
type Response = ServiceResponse<B>
type Response = ServiceResponse<B>
Responses produced by the service.
type Error = S::Error
type Error = S::Error
Errors produced by the service.
type Transform = RedisSessionMiddleware<S>
type Transform = RedisSessionMiddleware<S>
The TransformService
value created by this factory
The future response value.
Creates and returns a new Transform component, asynchronously
Auto Trait Implementations
impl !RefUnwindSafe for RedisSession
impl !Send for RedisSession
impl !Sync for RedisSession
impl Unpin for RedisSession
impl !UnwindSafe for RedisSession
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more