From 1bc39b4f468798e02fa56663c1d94f36fb847a7b Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sat, 17 Aug 2002 01:31:16 +0000 Subject: [PATCH] Document that the session file handler needs a fs with atime support git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@92345 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/reference.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/reference/session/reference.xml b/reference/session/reference.xml index 740d1c8f59..1620193923 100644 --- a/reference/session/reference.xml +++ b/reference/session/reference.xml @@ -1,5 +1,5 @@ - + Session handling functions Sessions @@ -176,6 +176,14 @@ of seconds after which data will be seen as 'garbage' and cleaned up. + + If you are using the default file-based session handler, your + filesystem must keep track of access times (atime). Windows FAT does + not so you will have to come up with another way to handle garbage + collecting your session if you are stuck with a FAT filesystem or any + other fs where atime tracking. + +