Yes. once the session expire,
it will expire all the user.
does the following code correct to use?
PHP Code:
$authNamespace = new Zend_Session_Namespace('Zend_Auth');
$authNamespace->user = $username;
$authNamespace->setExpirationSeconds(360);
or I have to create new namespace for each user?
PHP Code:
$authNamespace = new Zend_Session_Namespace($username);