Session Cache Provider
The CSessionCache provider stores data on the server side, persisting data for the duration of a user session.
Note: Server-side caches use the memory of the server they are running on. They may not work as expected in a stateless environment.
CSessionCache Example
SessionCache ensures that temporary flow data doesn't leak beyond the user's current session.
Security Note: Because Nuxt hydrates state from server to client, if the session strategy is used, data is shared and stored in the browser's sessionStorage. Therefore, if session strategy is used on the client side, it behaves as a client-side session and is not a secure server-only storage mechanism.