Tagged Questions
16
votes
5answers
2k views
What should be the lifetime of an NHibernate session?
I'm new to NHibernate, and have seen some issues when closing sessions prematurely. I've solved this temporarily by reusing sessions instead of opening a session pr transaction. However, I was under ...
3
votes
2answers
524 views
Check by id if an session exists, without renewing the session's lifetime
I'm working in a RIA. We use Memcached to store sessions, and I've installed http://pecl.php.net/package/memcache and my PHP session handler looks like this:
$session_save_path = ...
2
votes
4answers
3k views
ASP.Net session life time issue
I am confused about ASP or ASP.Net session life time (or life cycle) concepts. More specifically, my confusions are,
how did IIS magically knows a new session starts and an existing session ends? ...
1
vote
2answers
64 views
php manually session.gc_maxlifetime under Linux (Debian,Ubuntu) ignored. How to set alternative?
My Problem is quickly described by the need to extend the session data life over it's default settings within the php.ini without changing the php.ini. I am looking for a solution that can be applied ...
1
vote
4answers
242 views
How to set lifetime of session
How to set session lifetime in PHP ? I Want to set it to forever as long as the request is exist. The request is AJAX. My PHP code that handle AJAX request is:
// AJAX.php
<?php
...
1
vote
1answer
646 views
Session lifetime in node.js with express and MongoDB
I am using node.js with the express framework. As a session store I am using MongoDB. How can I set the lifetime after which the session objects are removed from MongoDB. This is how I am doing the ...
1
vote
1answer
776 views
setting and extending Session Lifetime using Zend_Auth
i use Zend_Auth for one of my Projects, but so far haven't figured out how to set the Lifetime for the Session, or how to extend it (lets say it should run 5 minutes and should reset to that when the ...
1
vote
2answers
451 views
Lifetime of the SSL session in https
We have an engaged (but friendly) discussion between coworkers about the life time of the SSL session underlying a https communication.
When I establish a https connection to a server using a normal ...
0
votes
3answers
232 views
ASP.NET session object lifetime pessimistic assumption !
I check a session object and if it does exist then call another method which would use that object indirectly. Although the second method would access this object in a few nanoseconds I was thinking ...
0
votes
0answers
221 views
PHP - Destroy Session [closed]
Possible Duplicate:
How do I expire a PHP session after 30 minutes?
Hi All,
The problem I am running into is that my host will not let me overwrite PHP.ini settings. They currently have ...