Author: rjung
Date: Tue Mar 24 12:15:19 2009
New Revision: 757756

URL: http://svn.apache.org/viewvc?rev=757756&view=rev
Log:
Add backport proposal.

Modified:
    tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=757756&r1=757755&r2=757756&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Tue Mar 24 12:15:19 2009
@@ -134,3 +134,35 @@
   http://svn.apache.org/viewvc?rev=757721&view=rev
   +1: rjung
   -1:
+
+* Backport cleanup of semantics of thisAccessedTime and
+  lastAccessedTime for sessions:
+  - preparational whitespace changes
+    http://svn.apache.org/viewvc?rev=711695&view=rev
+  - Give thisAccessedTime and lastAccessedTime for sessions
+    a clear semantics:
+    http://svn.apache.org/viewvc?rev=711711&view=rev
+    - thisAccessedTime will be updated at the beginning and
+      at the end of session use
+    - lastAccessedTime will only be updated at the end of
+      session use
+    This means:
+    - lastAccessedTime is the last access time of a session
+      disregarding any request still being processed on.
+      So this is good to use even from within a request
+      to detect when its own session has been used last before.
+    - thisAccessedTime already gets updated when a new request 
+      disregarding any request still being processed on.
+      So this is better for any idleness check or information.
+    - thisAccessedTime >= lastAccessedTime always
+  - Port from StandardSession to DeltaSession
+    http://svn.apache.org/viewvc?rev=711714&view=rev
+  - Expose thisAccessedTime via the session interface
+    and ManagerBase, so we can use it from outside the session.
+    http://svn.apache.org/viewvc?rev=711716&view=rev
+  - Make the classes checking session idleness use thisAccessedTime.
+    http://svn.apache.org/viewvc?rev=711720&view=rev
+    This is not for invalidation, only for displaying
+    idle times and making persistance decisions.
+  +1: rjung
+  -1:



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to