mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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
This commit is contained in:
parent
73bc2dd948
commit
1bc39b4f46
1 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<reference id="ref.session">
|
||||
<title>Session handling functions</title>
|
||||
<titleabbrev>Sessions</titleabbrev>
|
||||
|
@ -176,6 +176,14 @@
|
|||
of seconds after which data will be seen as 'garbage' and
|
||||
cleaned up.
|
||||
</simpara>
|
||||
<note>
|
||||
<simpara>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.
|
||||
</simpara>
|
||||
</note>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
|
|
Loading…
Reference in a new issue