1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-29 08:09:18 +02:00
This commit is contained in:
Nikolay Kim
2018-04-18 20:16:29 -07:00
parent ce1081432b
commit 48b02abee7
4 changed files with 31 additions and 32 deletions

View File

@@ -9,10 +9,10 @@
//! backend implementations can be added.
//!
//! [**CookieSessionBackend**](struct.CookieSessionBackend.html)
//! uses cookies as session storage. `CookieSessionBackend` creates sessions which
//! are limited to storing fewer than 4000 bytes of data, as the payload must fit into a
//! single cookie. An internal server error is generated if a session contains
//! more than 4000 bytes.
//! uses cookies as session storage. `CookieSessionBackend` creates sessions
//! which are limited to storing fewer than 4000 bytes of data, as the payload
//! must fit into a single cookie. An internal server error is generated if a
//! session contains more than 4000 bytes.
//!
//! A cookie may have a security policy of *signed* or *private*. Each has
//! a respective `CookieSessionBackend` constructor.