-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lazy session start #21
Comments
I've the same problem on my application. Do you have any idea how to resolve this problem properly ? Originally posted by @mael-lg at zendframework/zend-session#43 (comment) |
Containers should not be injected, but rather requested at runtime. Session containers are NOT services. Originally posted by @Ocramius at zendframework/zend-session#43 (comment) |
I have the same issue with this session package in combination with a DI container. Creating a session or a // Start session
$this->getManager()->start(); If this line could be removed, the issue could be solved. But I guess this would be a breaking change. |
The current container object starts a session in the constructor automatically. This works fine for most use cases, but it could come in handy to use some kind of delayed session start. I'm working on a REST API which accepts API keys, but also check for authenticated users in their sessions. The authentication for the users are stored in sessions. However, every API call from a REST client generates a session. It will send a cookie to the REST client, while also storing the session information on disk. This should not happen with every API call by REST clients.
It would be great to have a container which does not automatically starts a session, only under the following circumstances:
session_status
returnPHP_SESSION_NONE
and$_COOKIE[session_name()]
is set. This will only start a session when the browser actually has send a cookie to the server.Originally posted by @dekker-m at zendframework/zend-session#43
The text was updated successfully, but these errors were encountered: